Created
August 10, 2017 13:54
-
-
Save tadeubdev/ee9f70c0e19c4f23092923cf8c750192 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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