Folder/File structure

Associate
Joined
19 Apr 2007
Posts
781
I was wondering whether anyone knows whether there is a program about which can export folders and file names from your computer into a text document. I thought this would be useful if ever the case happened where your hard drive failed and you would like to know what programs and files you had previously, this could then be backed onto a USB drive.
 
at the root of C drive:

dir /s *. > list.txt

It'll churn away for a few minutes and create a text list of all folders on the C:\

Very basic (and free) way of doing it. there are programs that do a similar thing of course.
 
a little typo there. should be....

dir /s *.* > list.txt

or you can filter by filetype....

dir /s *.mp3 > list.txt

or filename

dir /s *blah*.* > list.txt

and so on.... :)
 
Back
Top Bottom