One way you could do it would be to go to a command prompt, drill
down to the folder you want a listing of, and then type
dir /b > output.txt
which will give you a directory listing without any of the header,
size or date information, and output it to a text file in the current
folder. You can then open that text file in your favourite text
viewer or word processor, and from there print the information as you
see fit.
Keith