//flex table opened by JP

Click to See Complete Forum and Search --> : Sub-directory contents


csthews
02-24-2001, 08:35 PM
Does anyone know how to save the contents of a subdirectory in a text file??

mind245
02-24-2001, 09:58 PM
I used to have a program that did what I think you're describing. Check out
http://computers.rochester.rr.com/nonags/index.html

Click on browse in the left toolbar and look through the freeware. You might try the "disk utilities" catagory.

RobRich
02-24-2001, 10:42 PM
You can pipe the display of the DOS dir command to a text file. Try executing this command in the directory in question:

dir > files.txt

This will save the filenames into a text file with the name "files.txt". You can also combine this with other dir coventions, such as:

dir c:\windows\*.exe /a /b > files.txt

To view a list of dir options, execute this:

dir /?

Good Luck,
Robert Richmond