Situatie
Solutie
Use the following command in cmd with admin rights:
To display the names of all the subdirectories on the disk in your current drive, type:
tree \
To display, one screen at a time, the files in all the directories on drive C, type:
tree c:\ /f | more
To print a list of all the directories on drive C to a file, type:
tree c:\ /f > <driveletter>:\<filepath>\filename.txt
Leave A Comment?