PDA

View Full Version

: how to print a file directory?


thumper
01-14-2011, 11:56 AM
as title states. i have a bunch of cd's that my boss wants me to print out on a sheet of paper all the files that are on it and put it in a jewel case for storage... normally i would just do a ghetto "print screen" and output to thru a paint program, but there are too many files this time around to do that... help?

InvisibleSoul
01-14-2011, 12:55 PM
Open command prompt
cd <directory>
dir /ong > files.txt

List of files will be in files.txt, sorted by name, and directories at the top.

Or if you want to order it differently, refer to: http://www.computerhope.com/dirhlp.htm

!MiKrofT
01-14-2011, 10:10 PM
Yeah I've done the same before except I just used dir in a command prompt and then copy/paste.