 ME432ME
join:2001-05-11
| file/directory listing program?
i'm looking for some kind of program that can look at a location (such as "c:\") and for example output a list of ALL directories/sub directories only, all directories + files; and if possible, all of the above + exact file sizes.
the more it can do the better. i've also looked into doing such things with DOS but had trouble finding exact commands since they'd be so complex (for me anyway, i hate DOS), maybe a batch file would help? |
|
 FBM
join:2002-07-25 Chicago, IL
| from a cmd prompt:
directories and sub directories only: dir /ad /s
remove the /ad to get the files
add a /p to pause between pages
add /b if you just want the names without details like timestamps and file sizes
to send to a file: "dir /ad /s > file.txt"
dir /? for more options |
|
 mfmruizv
join:2001-09-01 USA | reply to ME432ME Been using this simple free one that does everything you listed above for ages »freeware.prv.pl/ |
|
  barqsdrinker What Can I Photograph Today? Premium join:2001-02-26 Apo, AE clubs:
| reply to ME432ME said by "CMD.EXE" :
C:\>tree /? Graphically displays the folder structure of a drive or path.
TREE [drive:][path] [/F] [/A]
/F Display the names of the files in each folder. /A Use ASCII instead of extended characters.
Works for me under XP.... -- Thanks for reading!  |
|
  Kabanos Premium join:2001-06-29
| reply to ME432ME said by ME432ME :i'm looking for some kind of program that can look at a location (such as "c:\") and for example output a list of ALL directories/sub directories only, all directories + files; and if possible, all of the above + exact file sizes. the more it can do the better. i've also looked into doing such things with DOS but had trouble finding exact commands since they'd be so complex (for me anyway, i hate DOS), maybe a batch file would help? Take a look at this and see if it is what you are looking for.
Dirhtml - A freeware index.html generator: »dirhtml.enware.info/
Dirhtml Screenshots: »www.dirhtml.enware.info/screensh···ots.html -- non nova, sed nove |
|
 ME432ME
join:2001-05-11
| reply to FBM after some playing around i actually got the DOS stuff worked out nicely, TREE and DIR. i'm gonna try playing around with dirhtml a bit more for the html output but it's a bit tricky to get the correct output i'm looking for, the last output i got included dirs from the recycle bin 
anyway i'll play around with it some more later, thanks for all the replies guys. |
|
 Jrb2 Premium join:2001-08-31
| reply to ME432ME Another free program:
Karen's Directory Printer
»www.karenware.com/powertools/ptdirprn.asp
I've been using it for years  |
|