vote up 2 vote down star

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?

flag

2 Answers

vote up 4 vote down check
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|flag
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 at 1:41
vote up 1 vote down

Easy!

dir > list.txt

link|flag

Your Answer

Get an OpenID
or
never shown

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