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?
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.