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

Program or ways to print out files and dir tree?

Throw this into a command prompt:

dir arguments > output

This will store you provide into the file specified by output.

Example:

dir/a/s > listing.txt

This will show all hidden files and subdirectories starting at the directory where you enter this and store everything into a file called listing.txt.

Hope this helps.
 
"tree /f" also works and is easier to track on a printout....

use "|more" if you need to pause the screen.

tree / f >lpt1: sends it to the printer.

tree /f >C:\path\filename send it to a file. (substitute a location for "path", and the name of the file for "filename"

Good Luck

Scott
 
Back
Top