Reply to thread

lol yep

in start, run type:


[code]cmd /c dir /b c:\pathtolist\*.* >>C:\textfile.txt[/code]


or, if you want to include the subdirectories too!

[code]cmd /c dir /b /s c:\pathtolist\*.* >>C:\textfile.txt[/code]


or you make a batch file:


open notepad and save the blank file as "list.bat" or whatever, makeing sure the extension is .bat tho.


in the file write:


[code]

@echo off

dir /b [I](add /s for subdirectories here!)[/I] c:\pathtolist\*.* >>C:\textfile.txt

cls

exit

[/code]


Back
Top