Re: Convert file names to a usable list?




"Gary" <Gary@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:18C366DE-4069-47DD-B375-937B0CE91C64@xxxxxxxxxxxxxxxx
Is it possible under Windows XP / Vista to create a database or list from
the
names of files from within a directory and subdirectorys?

I want to make a list/database of quite a lot of mp3s so i can order and
print them in either access or excel.

The file structure I use is:

C:\...\Music\artist\artist - title.mp3

Many thanks
Gary

Open up a cmd prompt window.

use the cd command to get to the directory of interest.
You didn't give the full path so I can't spell it out for you.
To go from the Music directory to the artist directory
the command would be
cd artist

You can go one directory at a time or do it all with one
command. If the directory name has any spaces in it
you must enclose the string in double quotes.
i.e.
cd "Documents and Settings"

Once you get to the directory of interest the command

dir > list.txt

will create the list that you want.

Also try

dir /w > list.txt

to see if you prefer that format.



.



Relevant Pages

  • Re: Convert file names to a usable list?
    ... print them in either access or excel. ... Open up a cmd prompt window. ... use the cd command to get to the directory of interest. ... To go from the Music directory to the artist directory ...
    (microsoft.public.windowsxp.general)
  • MP3s to Audio CD
    ... Trying to figure out how to make an audio CD ... from a bunch of MP3s using the command line. ... My guess is I have to run the MP3s through a codec or play them through ...
    (comp.os.linux.misc)
  • Re: MP3s to Audio CD
    ... Nietzsche wrote: ... from a bunch of MP3s using the command line. ...
    (comp.os.linux.misc)

Loading