P
Picard
Guest
I've got a folder with a number of mp3's in it. Can I print out a list of that? How do I do it?
South Africa’s biggest forum. Discuss, discover, and connect with thousands of members.
oldschool
dir /b *.mp3 > lpt1:
One tool that gives you that "print directory listing" context menu item is the directory printer tool at karen's Power Tools
Does the lpt1 thing still work to a usb printer?
dir /b *.mp3 > whatever.txt
I just do aCode:dir /b *.mp3 > whatever.txt
It'll pop out a whatever.txt file in the location where you were running the dir command, with the results that you then Print/save/copy/etc as you like.
I just do aCode:dir /b *.mp3 > whatever.txt
It'll pop out a whatever.txt file in the location where you were running the dir command, with the results that you then Print/save/copy/etc as you like.