• A program to make a text file of all the files and folders in a folder?
    4 replies, posted
Anyone know of a program that does this?
[code]dir C:\ > file.txt[/code] Change C: to the directory you want, change file.txt to the text file name you want, save as a batch file (somefilename.bat).
Or if you prefer just the file name: [code]dir /B C: > file.txt[/code] or if you want to list files in sub directories too: [code]dir /S C: > file.txt[/code] or both if you prefer.
[code]dir /S /B C:\ > what.txt[/code] Create a giant ass text file of every file on your PC :O
Thanks, worked perfectly.
Sorry, you need to Log In to post a reply to this thread.