well, I'm trying to index and categorise hundreds and thousands files in my hdd..and it's very hard to do.. is there a way, a tip or a software that can index the all the files and list the files so I can print it out and have a look at it?
An ugly way of doing a file index dump is through DOS...
cd /
dir /w /s > listing.txt
This will print out an entire listing of all the files and directories on your C: drive sorted by directory to the file "listing.txt" which will be saved in the root directory of C:.
The /w switch prints out the listing in wide mode (multiple files on 1 line). This saves screen space when prining. If you want all the files listed on their own line ommit the /w.
Once you have them all in a file you can use excel to sort them how ever you want.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.