Wednesday 27 July 2011

How list everything in a folder and its subfolders

List all Files Recursively

C:\>dir /s

To save them to a file

C:\> /s /b>filelist.txt

View them a page at a time

C:\>dir /s | more

This should output the entire structure
tree /f

No comments:

Post a Comment