| View previous topic :: View next topic |
| Author |
Message |
DP
One of a weyr
|
Posted: Sat Mar 06, 2004 10:18 pm Post subject: 1 |
|
|
| To make inventories of our MP3 CD's, I'd like to somehow convert the inventory generated by Windows Explorer into a text file. But I've no clue how. Anyone? |
|
| Back to top |
|
 |
Chuck
Daedalian Member
|
Posted: Sat Mar 06, 2004 10:56 pm Post subject: 2 |
|
|
| You could use the old DOS dir command. "DIR /B *.MP3 > MUSIC.TXT" would give you an old style DOS directory listing of just the file names for all the MP3 files in the subdirectory you're in and send the text of it to MUSIC.TXT. You probably have a command prompt icon somewhere. |
|
| Back to top |
|
 |
Samadhi
+1
|
Posted: Sun Mar 07, 2004 11:01 am Post subject: 3 |
|
|
Start
Run
Command
*Navigate to whatever directory your mp3s are in*
Dir *.mp3
Select the list from the command prompt window (click and highlight)
Press ctrl-C
Open Word or notebook or some kind of and either right click paste or hit ctrl-v |
|
| Back to top |
|
 |
DP
One of a weyr
|
Posted: Sun Mar 07, 2004 11:28 am Post subject: 4 |
|
|
| Thanks, that works! In view of the length of the contents, I have to break it down in "dir d: A*.MP3" and so on, but this is still quite quick. |
|
| Back to top |
|
 |
Chuck
Daedalian Member
|
Posted: Sun Mar 07, 2004 2:50 pm Post subject: 5 |
|
|
DIR /B /ON *.MP3 > MUSIC.TXT
would have sorted them alphabetically and put just the file names in MUSIC.TXT which you could have then edited. |
|
| Back to top |
|
 |
DP
One of a weyr
|
Posted: Sun Mar 07, 2004 3:06 pm Post subject: 6 |
|
|
| Thanks Chuck, I'll try that next. I have not done a full CD yet anyway. |
|
| Back to top |
|
 |
Samadhi
+1
|
Posted: Sun Mar 07, 2004 10:03 pm Post subject: 7 |
|
|
| Shows what I know. Neat trick. |
|
| Back to top |
|
 |
Logain
Stretch Armstrong
|
Posted: Sun Mar 07, 2004 11:48 pm Post subject: 8 |
|
|
| Also, if you use the notation >> rather than >, it will append the file with the additional info. |
|
| Back to top |
|
 |
lurker
Guest
|
Posted: Sun Mar 21, 2004 7:01 pm Post subject: 9 |
|
|
| and using the "/s" option gets you all matching files in all subdirectories of the current dir. |
|
| Back to top |
|
 |
|