List all files in all subfolders
Solution 1:
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
Solution 2:
Try tree /f. This should output the entire structure.