making a list

Associate
Joined
8 Feb 2006
Posts
1,846
Location
Stafford
ok, how can i make a list of whats in a file e.g. a bunch of games, and drop it into word as a list, without typing it all out

??
 
why are you posting so awkwardly? give us more information..

is it..

a list of files in a folder, and you want the filenames all printed in one text file.

or..

a list of files in a folder and you want the contents of them in one file
 
chuck it in notepad, call it "filesoutput.bat" save it in the dir you want it to do it for, then double click the bat file
 
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?:)
 
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?:)

Don't worry it is a little confusing :p

Ohh and your naughty. NDS files.... tut tut! :p
 
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.
 
dir /b >a.txt

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?:)
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.

dir *.NDS /b > c:\output.txt

Then look for a text file called output in your main (root) C:\ folder and open it with Notepad or Wordpad.
 
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.
 
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.

hmm, yes there are sub folders, but i just done as you said and it comes out saying invalid no sub folders exsist!
 
bizarre... what happens if you navigate to the directory first, and then run the command without specifying the directory name, e.g.

Code:
c:\> cd c:\my documents\my music
tree /f /a > c:\output.txt
Does it still give the same error message?
 
is not reconised as blah blah
ok so im thinking im doing this totally wrong !!!
the folder is wish to make the list of is on my backup hdd which is g:
on g: is folder named music, within music it is organised into artist then sub foldered with album.
this is driving me crazy keep getting error messages
i cant be bothered to list them individual as there is over 1000 albums
 
Back
Top Bottom