In windows, is there any way to get a list of all files in a folder, including all the files within all the subfolders?
Solution:
List all Files Recursively
C:
>dir /s
To save them to a file
C:
>dir /s /b>filelist.txt
View them a page at a time
C:
>dir /s | more