How to export all filename in a folder

Sometimes you want to list all filename and path in a folder to a txt documents but CTRL + C does not help. Just follow these steps below to export all filename in a folder.

1.Open Command Promt windows. ( Start > Run > cmd)

2. Using "cd command" to move to your folder.

3. Type "dir /B > filelist.txt", filelist.txt is your output.

4. Open filelist.txt to view all filename in your folder.

You may also like