![]() |
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?
|
Try looking at download.com They have lots of out there programs available.
|
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. |
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. |
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. |
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. |
That does the trick well enough. THanks for your help, everyone.
|
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. |
Quote:
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. |
yes, but how do you do it in perl?
|
Quote:
I don't agree about /s though....it lists only date, time, top folder, and files/folders within....all pertinent info IMO. :) |
Quote:
|
All times are GMT -8. The time now is 07:10 AM. |
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project