Is this a windup?![]()
this is the issue
i have a list of nds files, and i want to save the list as a word or notepad file, does it make more sense now, sorry for confusion, also with regard to 'wind up' despite how easy it may seem to some individuals, if you have not done it before how would you know?![]()
dir /b >a.txt
See bledd's post earlier, but you can restrict it to only show the files with the extension .NDS by amending the dir command slightly, e.g.this is the issue
i have a list of nds files, and i want to save the list as a word or notepad file, does it make more sense now, sorry for confusion, also with regard to 'wind up' despite how easy it may seem to some individuals, if you have not done it before how would you know?![]()
Are the files in any way structured, i.e. do you have sub-folders for albums, or is it just many files in one directory?along the same lines, im also looking to do a list of what i have in a folder i.e just one big list of all my music so i catalogue it all.
Are the files in any way structured, i.e. do you have sub-folders for albums, or is it just many files in one directory?
If there are sub-folders you could always use the tree command...
Open a command prompt (start -> run -> cmd) and type the following:
tree "c:\my documents\my music\" /f /a > c:\treeoutput.txt
nb - you will need to replace the "c:\my documents\my music" with the correct location for the directory where your MP3s are stored. Then open the treeoutput.txt file with Wordpad or notepad and start devising a scheme to catalogue your files
If it's just a whole bunch of files in one directory then just use the same dircommand that valerian will use, but change the file extension to .mp3 instead of .nds. You might want to open the file in Excel to try and sort it more easily if the layout is very messy.
c:\> cd c:\my documents\my music
tree /f /a > c:\output.txt