IS there a way using php to get a list of local drives?
figured it out:
<?php for ($i = 1; $i <= 26; $i++) { if (!$letter) { $letter = "a"; } else { $letter++; if (file_exists($letter . ":\\"")) { //do this } } } ?>