• 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 to make a text list of folders and or files...???

Bartman39

Elite Member | For Sale/Trade
I have a very large collection of full MP3 albums (Yes I have the originals) and need to find a program to take all the titles and convert them into text to make a printable catalog... I`ve done some searching but cant find what I need...?

Or is there a way to do it with the windows explorer...?

HELP...!
 
go into good old dos and do soemthing like this:


dir > files.txt


i might be a bit off on the syntax but thats the way you do it.




dam()
 
^^^^^ what he said

if your mp3s are organized in directories, you can use
dir /s > filename.txt

🙂
-1043-
 
As DAM said

dir /s > file.txt

using the /s gets a list of the subdirectories below the root that you started at.

The command will list all files in each directory.
 
I like to use
dir /o:n /s /b > filelist.txt

the /s lists stuff in subdirectories as previously mentioned
the /b drops off the date, time, and filesizes from your list
the /o:n puts everything in alphabetical order including the subdirectories and their contents 🙂
and the > filelist.txt is self-explanatory 😉
 
Gotta say thanks... 🙂

Whats bad WinXX has spoiled me and now I`ve realized that I have forgoten so much of what I cut my teeth on... good ole DOS... 🙂
 
Back
Top