1.

Solve : print sub-directorys?

Answer»

How can I PRINT the contents of a sub-directory. Or send them to a FILE that then can be printed. There used to be a LIST COMMAND that would work. Thanks NormaNot really sure what you need.

Print list of files in directory:
Code: [Select]
dir directoryname > prn

Print list of files in directory and sub-directories
Code: [Select]
dir /s /b directoryname > prn


If what you wanted was the contents of the individual files, get back to US.



Discussion

No Comment Found