Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   Make a list of folders? (https://thetfp.com/tfp/tilted-technology/84814-make-list-folders.html)

Jeff 03-06-2005 08:02 PM

Make a list of folders?
 
Here's what I want to do...I want a text file of folder names at a given location. Is there a program that can do this for me?

Hardknock 03-06-2005 08:46 PM

Try looking at download.com They have lots of out there programs available.

zero2 03-06-2005 08:53 PM

Go to command prompt and type in tree. My Dos is kind of rusty, but I'm pretty sure you can redirect the output into a text file.

In any event if no one knows how to do it. Just copy & paste the text into a wordprocessing document.

vinaur 03-06-2005 08:59 PM

to output the cmd tree command output into a text file put > [path to text file you are outputting to] after the tree command. Example: tree C:\Windows > C:\Temp\a.txt

The output is kind of messy though.

TheProf 03-07-2005 06:08 AM

Not sure what version of windows you're using, but this should work with all versions

1) go the the command prompt (command or CMD)
2) type dir /AD /ON > directories.txt

And there you go. It will create a file called directories.txt which will have all the directories listed, in alphabetical order.

vinaur 03-07-2005 07:23 AM

Here's what you really want. Open cmd, go to the folder you want the tree of and type in the following: dir /b /ad /on /s > dirs.txt


The output will be in that same folder.

Jeff 03-07-2005 06:50 PM

That does the trick well enough. THanks for your help, everyone.

mikec 03-14-2005 09:28 AM

similar to vinaur's solution, nav to the top level folder in a cmd prompt, and typs:

dir /s > c:\files.txt

the output will be c:\files.txt

not sure what all the other switches V is listing.....dir /s will give you everything.

vinaur 03-14-2005 02:50 PM

Quote:

Originally Posted by mikec
similar to vinaur's solution, nav to the top level folder in a cmd prompt, and typs:

dir /s > c:\files.txt

the output will be c:\files.txt

not sure what all the other switches V is listing.....dir /s will give you everything.

The /b switch is to get rid of all the unnecessary info, such as date it was created and how many files it contains. It's called bare format.

The /ad switch is used to display only directories. You can display only hidden files (/ah), system files (/as), read-only, and so forth. The /a stands for attribute. The d stands for directory.

The /on is to order the directories by name.

The /s is to display the sub directories.

By doing dir /s you are going to get a humangous list with a lot of info that you don't need.

BAMF 03-14-2005 04:32 PM

yes, but how do you do it in perl?

mikec 03-15-2005 06:14 AM

Quote:

Originally Posted by vinaur
By doing dir /s you are going to get a humangous list with a lot of info that you don't need.

thanks for explaining the switches.

I don't agree about /s though....it lists only date, time, top folder, and files/folders within....all pertinent info IMO. :)

vinaur 03-15-2005 06:20 AM

Quote:

Originally Posted by mikec
thanks for explaining the switches.

I don't agree about /s though....it lists only date, time, top folder, and files/folders within....all pertinent info IMO. :)

Jeff wanted to output only folders, so you would have to add more switches to filter the results.


All times are GMT -8. The time now is 10:00 AM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76