Crosswords18 mins ago
windows list of files need to print
4 Answers
i have a folder with 950 files in it, and i wish to print a list of the names of all of the files.. is there a function in windows that lets me do this?
Answers
Best Answer
No best answer has yet been selected by Daave. 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.Try the following:
Select Run from the Start Menu
Type "cmd". This'll open a Dos command prompt.
In the Dos box type "DIR C:\WINDOWS /B > C:\mylist.txt"
This command will produce a directory listing of C:\Windows and put it in a text file called mylist.txt at the root of the C: drive. You can open this in any text editor such as Notepad and then print it out. You can of course substitute your own path for C:\Windows.
Select Run from the Start Menu
Type "cmd". This'll open a Dos command prompt.
In the Dos box type "DIR C:\WINDOWS /B > C:\mylist.txt"
This command will produce a directory listing of C:\Windows and put it in a text file called mylist.txt at the root of the C: drive. You can open this in any text editor such as Notepad and then print it out. You can of course substitute your own path for C:\Windows.