Skip to content

Instantly share code, notes, and snippets.

@tadeubdev
Created August 10, 2017 13:54
Show Gist options
  • Select an option

  • Save tadeubdev/ee9f70c0e19c4f23092923cf8c750192 to your computer and use it in GitHub Desktop.

Select an option

Save tadeubdev/ee9f70c0e19c4f23092923cf8c750192 to your computer and use it in GitHub Desktop.
<?php
$FileSysObj = new COM('Scripting.FileSystemObject');
foreach ($FileSysObj->Drives as $Drive) {
$Drive = $FileSysObj->GetDrive($Drive);
if ($Drive->DriveType!=1) {
continue;
}
$Letter = $Drive->DriveLetter;
$Files = glob("{$Letter}://*");
echo "{$Letter}:// <br>";
var_dump($Files);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment