Tool to generate an explorer-like gui from DIR command output ?

  • Thread starter Thread starter Kai Spitzley
  • Start date Start date
K

Kai Spitzley

Hey gang.
Is there a tool that takes the output of the dir command (i.e. "dir /s
dir.txt") and generates an explorer-like interface to browse the
directory hierarchy ?
(I have the output of "dir d:\ /s" from my old pc and need an easy way
to navigate it...)
 
Kai Spitzley said:
Hey gang.
Is there a tool that takes the output of the dir command (i.e. "dir /s
directory hierarchy ?
(I have the output of "dir d:\ /s" from my old pc and need an easy way
to navigate it...)

Following up to my own post here. A better way to capture the
hierarchy ist to use "tree >tree.txt" instead. This is as close to an
explorer-like view as you can get without an additional tool. All I
need in this output would be a way to collapse the directories.
 
Kai said:
Following up to my own post here. A better way to capture the
hierarchy ist to use "tree >tree.txt" instead. This is as close to an
explorer-like view as you can get without an additional tool. All I
need in this output would be a way to collapse the directories.

I'm not sure if you are looking for directories *and* files or just
directories. If the latter, TreeCopy...
http://www.rjlsoftware.com/software/utility/treecopy/

--
dadiOH
____________________________

dadiOH's dandies v3.06...
....a help file of info about MP3s, recording from
LP/cassette and tips & tricks on this and that.
Get it at http://mysite.verizon.net/xico
 
Following up to my own post here. A better way to capture the
hierarchy ist to use "tree >tree.txt" instead. This is as close to an
explorer-like view as you can get without an additional tool. All I
need in this output would be a way to collapse the directories.

Replace the graphical chars of the tree with spaces. You shouldn't use
the ASCII variant of output (/a switch) because you will encounter less
conflicts with chars inside your file and directory names with the chars
of the extended graphical char set.

After that you can view the output inside with the folding editor of
your choice. (It needs to support folding by white space amounts.)

I recommend using the stand alone version of SciTE named SC1 which can
be found here:

http://scintilla.sourceforge.net/SciTEDownload.html

You need to switch to a language which supports folding (like VBScript
or Python). If you activate Fold Margin within the View menu you can
expand or collapse the folds by clicking on the '+' and '-' signs on
the left margin. From the documentation:

| The fold point markers can be clicked to expand and contract folds.
| Ctrl+Shift+Click in the fold margin will expand or contract all the top
| level folds. Ctrl+Click on a fold point to toggle it and perform the
| same operation on all children. Shift+Click on a fold point to show all
| children.

HTH.
BeAr
 
Is there a tool that takes the output of the dir command (i.e.
"dir /s >dir.txt") and generates an explorer-like interface to browse the
directory hierarchy ?

Judging from another post you still have access to your old PC. So why
don't you just use a disk cataloging program like CatFish?

http://www.equi4.com/catfish.html

There are several other out there, which you should find easily by using
'CatFish' and 'disk catalog' as your search keywords.

BeAr
 
Replace the graphical chars of the tree with spaces. You shouldn't use
the ASCII variant of output (/a switch) because you will encounter less
conflicts with chars inside your file and directory names with the chars
of the extended graphical char set.

After that you can view the output inside with the folding editor of
your choice. (It needs to support folding by white space amounts.)

Yees, very creative way, thanks for your input, I'll try that!

And dadiOH, I''ll check out treecopy. :=
 
Back
Top