WTD: a program that reads cd and creates cd directories list

  • Thread starter Thread starter CHarneyCHRIS
  • Start date Start date
C

CHarneyCHRIS

hi, i want a program that reads can read a cdr and create a list of everything
that is on the cd and when i print the list it be the size of a cd cover.
thanks
 
On that special day, CHarneyCHRIS, ([email protected]) said...
hi, i want a program that reads can read a cdr and create a list of everything
that is on the cd

Very simple. Create a batchfile that reads

dir /s /b /w d:\*.* > "%1".txt

(d: stands for the CDrom drive letter)

Call it anything, I called mine catcd.bat

Run it as (eg) catcd mycdrom

mycdrom fills in the "%1" placeholder, and you can choose different
names like mycdrom2, or sharewarecd.

Be sure you run the file in a writeable place (ie not in the CDrom
directory), or enter a path before the intended cd list file.
and when i print the list it be the size of a cd cover.

With thousands of .jpg files on one CD? Impossible.


Gabriele Neukam

(e-mail address removed)
 
Back
Top