Program thats writes file names from a folder to a text file...

kbryc08

Master Cheef
Super Moderator
Nov 17, 2006
1,277
160
Yep, just like the title says. I only found one program called AVD File List but it f**** up the filenames so I trashed it.

I'm running Vista Ultimate x64 and WinXP Pro.

This is a somewhat obscure request so I'm not really expecting much but any help would be greatly appreciated. Have a nice day! :prance:
 

akuma2002

Moe is my life!
Nov 8, 2006
1,300
42
So you want a list of all the files in a specified directory ?

You can do that using a DOS command. Go there : start menu > run > type "cmd" (without the quotes)
Then you have to put yourself in the specified directory. Type cd\ to be on the root (usually c:\) Then type cd "name of the directory" (on XP, you can use the tab command to complete names)
Then type dir /s > list.txt
(the /s allows to list subdirectories, and list.txt is just a generic name, you can use another)