Which program that I can use to export file list in Windows Explorer to a Microsoft Excel File or to a simple TXT File?
For example: let's say that I have the following files in c:\vacation directory:
NY Vacation.zip
LA Vacation.zip
VA Vacation.zip
I want to automatically copy and paste the file names to a txt file or to an Excel file.
How do I do that?
-
Dir C:\vacation\*.zip > C:\nameoffile.txt
To append, use >>
edit the last part to represent the name of the file you want it to be, and the location. -
You would probably want to use the /b option with the dir command to avoid getting the file and date information, other than that goofball is corrrect.
-
Thanks so much guys
. I didn't know that it's going to be that simple
-
Exporting file list to Excel or TXT Files
Discussion in 'Windows OS and Software' started by hendra, Nov 15, 2009.