• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

how to print list of files in folder

Bfavre444

Senior member
How does one print a list of files in a folder? I can't use print screen because that doesn't scroll it. And Win2k doesn't have an option to print list of files in a folder either. Is there a program that lets one do this? I've searched on the web and found none. Does anyone know of any?
 
From the command prompt:
cd <to the desired directory>
dir >>temp.txt <or> dir /w >>temp.txt <or> dir /od >>temp.txt
notepad temp.txt
 
Here's a workaround you could do (there are probably more elegant ways to do this, but oh well...)

Go to start, run and type cmd to bring up a command prompt. Navigate to the directory you want, and type dir. Right click and drag over the directory listing to highlight it, then hit enter to copy it. Paste it in notepad and print.
 
Great. Those 2 ways are great. But is there any GUI way or maybe capture the list with the MB or KB in the size column instead of bytes? But if there's no way, that's ok. Thanks guys.
 
nice tip woodie.........I didn't that it was was so easy........earlier I used to download a directory print util and print out the list........but this thing is much more easier

Raj
 
Who says DOS is dead?? Well, maybe not DOS exactly, but the command prompt lives! 😀

For other options, do a dir /? to see what other kind of file/directory listings you can get.

I've found the /b (for bare) option useful to use the file as an input file for a batch process.
Other useful switches:
/od for sort by date - ascending
/o-d for sort by date - descending
/os for sort by size - ascending
/o-s for sort by size - descending
 
Back
Top