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

OT HELP - Program that prints/lists directories and files in windows?

TuffGuy

Diamond Member
Does anyone know of a program that does this? I need to restructure our file server and need a printout of what files are where before re-organizing. Thanks.
 
At a DOS prompt: dir /r

At least I think that's the command. I'm in front of a Linux box at the moment.
 
From the root of the drive you can run:

dir *.* /s > file.txt

Edit: If you're doing this on a server w a large amount of files you're going to generate a rather large file so keep that in mind. If this is a 500GB file server you might want to drill a directory or two down and run it once for each directory.
 
I use this to generate a text file:
dir *.* /s/b> file.txt

Not exactly sure what the /b switch is, but it does go into every sub directory too. 🙂
 
Let's take this to the next level and get a little fancy:

...at your favorite cmd prompt type tree /f >file.txt😉

Osmo.
 
Back
Top