AutoHotkey | Android | Arduino | COMM140 | Fractals | Grammar Checkers | Knots | A Million Dots Activity | Processing | Processing for Scratch Users | Redbubble | Tutorials | Weather | World Time Meeting Planner | Favicon Generator.
Home > Tutorials & Notes > Useful DOS Command Prompt Commands
http://txpress.blogspot.com.au/2008/11/copy-all-filenames-in-directory-to-text.html
1. Open up your command prompt by typing cmd in the run dialog box and hitting Enter.
2. Navigate to the directory which has the files and type the following command -
DIR /B /O:N > filename.txt
This will save all the filenames in the current directory to a text file. The text file will be saved in the same directory.
3. To save file names from any sub-directories in the current folder, just add /S like -
DIR /B /O:N /S > filename.txt
http://mlichtenberg.wordpress.com/2011/01/25/command-line-fun-how-to-flatten-a-folder-hierarchy/
for /r %f in (*) do @copy "%f" .
Note that the trailing period in the command is significant… it designates the current folder as the destination for the copy operation.
Last refreshed: November 23 2024. 05:02.05 am
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 2.5 License.