Tuesday, March 21, 2017

windows - List all files in all subfolders


In windows, is there any way to get a list of all files in a folder, including all the files within all the subfolders?


Answer



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



No comments:

Post a Comment