easy way to list a selection of files for printing?

dir /b /s >c:\files.txt


that will output all filenames to a file called files.txt

run that from commandline in the folder in question (the /s will make it scan all the subfolders from there too

the file will be saved as C:\files.txt
 
Back
Top Bottom