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?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted
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 ?

link|improve this answer
can I append to that file? and how do i define the location if i don't want it to be in that directory? Also, can I get the file to display the results without timestamp? – GiH Oct 31 '09 at 1:41
feedback

Easy!

dir > list.txt

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.