Windows – How to export a directory list from command prompt

command lineexportwindows

I have a folder full of media that I want to export to a list (csv, doc, xml, whatever…). When I navigate in Command Prompt to that folder, I can use dir to display the files in that directory. I want to export that list. How can I do this from command prompt?

Also is there an alternative way (built-in) to do it without command prompt?

Best Answer

dir > textfile.txt

will export (pipe) it to a plain text file. You can do whatever you want with it afterwards.

If you wish to append, use two >>'s

dir >> textfile.txt

If you wish the file to be in another directory, just use

dir > c:\temp\textfile.txt

Without timestamp

dir/b

for example ?

Related Question