ChatterBank8 mins ago
Printing lists from My Documents
2 Answers
How can i print out a list of the diles and folders that i have in my documents, without using print screen and a paint package?
Answers
Best Answer
No best answer has yet been selected by Stav. Once a best answer has been selected, it will be shown here.
For more on marking an answer as the "Best Answer", please visit our FAQ.You could use the good old DOS-command DIR and redirect the result to a text-file which can be imported in e.g. Excel or Word.
You will need to take care of the DOS limitations (8.3).
Example for "My Documents" : DIR C:\MYDOCU~1 > C:\DIRLIST.TXT
If you also need the subdir's, it will be DIR /S C:\MYDOCU~1 > C:\DIRLIST.TXT
For more info on the DIR command, you can use HELP DIR (redirect it to a file if you don't have a DOS-window)
There are many free utilities that will do this. An example can be found here http://home.earthlink.net/~ddsharp
which is called dirlist.
Related Questions
Sorry, we can't find any related questions. Try using the search bar at the top of the page to search for some keywords, or choose a topic and submit your own question.