Results 1 to 9 of 9

Thread: in need of a prog

  1. #1
    Ensign
    Join Date
    Jan 2003
    Location
    great white north
    Posts
    29

    Question in need of a prog

    hey all, is there a prog that can get file lists? for example: i have a large mp3 collection, and i want to give a friend a list of the files, but i don't want to type out every filename. does there exist a prog that can grab filenames and paste them as text into a word processor?

  2. #2
    Rear Admiral Lower Half Cubsfan's Avatar
    Join Date
    Jul 2001
    Location
    Colorado
    Posts
    2,743
    It'll look a bit funny when you open it, but you can do:

    Open a command prompt window:

    cd c:\my\mp3\collection
    tree /F > c:\mymp3.txt

    That should list them out for you, but like I said, you'll have a bunch of weird characters in there too

  3. #3
    Commander ironchef's Avatar
    Join Date
    Dec 2000
    Location
    SF Bay Area
    Posts
    1,342
    Without funny characters:

    cd c:\my\mp3\collection\
    dir /s /b /p /o:g > mymp3.txt

    very similar to what Cubsfan said, but without the high ascii representation of subfolders. just a list of all folders/subfolders with their contents.

  4. #4
    Captain GilbertsGrape's Avatar
    Join Date
    Sep 2000
    Location
    You can’t get there from here, USA
    Posts
    1,802
    um how about winamp and use the playlist generater and it will generat a an HTML play list

  5. #5
    Commander ironchef's Avatar
    Join Date
    Dec 2000
    Location
    SF Bay Area
    Posts
    1,342
    Doh!

    Ya, what the Grape said.

  6. #6
    Arrrhh! coleslaw's Avatar
    Join Date
    May 2000
    Location
    LI NY
    Posts
    6,807
    If you are using Winamp 2.x, load all of your mp3 files into your playlist and then click the Misc button in the playlist window. Click Opt and then Generate HTML playlist. The playlist will appear in your web browser as an HTML file which you can save elsewhere.


    *Edit* Yeah, basically what he said.
    A priest, a paladin and Varimathras walk into a bar...

  7. #7
    Rear Admiral Lower Half Cubsfan's Avatar
    Join Date
    Jul 2001
    Location
    Colorado
    Posts
    2,743
    Originally posted by GilbertsGrape
    um how about winamp and use the playlist generater and it will generat a an HTML play list
    Sure, if you want to do it the EASY way

  8. #8
    Rear Admiral Upper Half Joshua's Avatar
    Join Date
    Jan 2001
    Location
    Long Island, NY
    Posts
    3,390
    c:\
    cd mymp3folder
    dir /s >>c:\Playlist.txt
    The Apexer formerly known as SnotRocket.

    "Like I ****ing said, "Ok, so I hear it may be a repost. Blah But I had never seen it, so..." **** you Canta." -Jenny 12/4/2003

  9. #9
    Ensign
    Join Date
    Jan 2003
    Location
    great white north
    Posts
    29
    ugh. how foolish of me to not think before posting. thanks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •