Shoutbox

Music List - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: Music List (/showthread.php?tid=76723)

Music List by bio_hazard13 on 08-12-2007 at 12:01 PM

I'm trying to send a list of the cd's that i own on my computer to my sister, so she can tell me the ones that she wants.

Now the problem is, im trying to do it without using an album thingy on winamp or itunes as i have a whole pile of dowloaded music as well and that would just stuff up the list, so i want to just copy the names of the folders as they sit in my overall music folder.  ie the folders are all named
Artist Name - CD Title
or CD Title if its a compilation cd

Now i tried just selecting the folders and copying them into word, but that didnt work, and im just stumped.  Im sure there's a really simple way to do this but i just cant think of it.

Thanks in advance for the help


RE: Music List by absorbation on 08-12-2007 at 01:06 PM

In iTunes, go to File > Print and you can customise your options here:

[Image: attachment.php?pid=842485]


RE: Music List by Verte on 08-14-2007 at 10:32 AM

On a Windows machine, open a cmd prompt, navigate to your music folder, and type something like dir > list.txt?


RE: Music List by bio_hazard13 on 08-14-2007 at 11:22 AM

Ok that seems to work but the problem is my music in on the F drive and i can seem to get to it through the cmd prompt, and im not sure how.  I dont really use the cmd prompt much, if at all.

Thanks


RE: Music List by foaly on 08-14-2007 at 12:21 PM

Ok let's say all your music in the folder : f:/music (and subfolders)
type in the promt: (tried to make it the way it looks like...)

code:
C:\Document and Setting\foaly>F:
F:\>cd music
F:\music>dir /w /s > list.txt

so basicly it's
code:
F:
cd music
dir /w /s > list.txt


that should make a list of all the files in the directory f:\music

I think I explained it way harder then necessary...
RE: Music List by bio_hazard13 on 08-16-2007 at 10:20 AM

Cool. Got it to work now.  Thanks guys