home *** CD-ROM | disk | FTP | other *** search
/ Shareware Tiger / SharewareTiger.cdr / x00 / romcopy.doc < prev    next >
Text File  |  1992-07-09  |  1KB  |  38 lines

  1. *** ROMCOPY ***
  2.  
  3. This is a quick utility to copy ANY file on a CD-ROM by just giving the name, 
  4. not worrying about what directory it is in.  This is done through a simple 
  5. ASCII database file (FILELIST.DAT) that tells where the files are.  The 
  6. format of the file is as follows:
  7.  
  8. First line:
  9.  
  10. XXX   where XXX is the default file extension of the files in that
  11.       database... this saves major space in most cases.
  12.  
  13. Repeated sets of the following:
  14.  
  15. <drive:\dir>    The subdirectory.  Drive is optional.
  16. <filename.ext>  A list of the files in that subdirectory... do not
  17.     .           include the extension if it is the default extension 
  18.     .           -- and don't put the dot in.  The only time you need
  19.     .           a dot is for files with NO extension.
  20. <filename.ext>
  21.  
  22.  
  23. * Setting up the database file *
  24.  
  25. There is a program called MAKEDIR.EXE that will generate such a list
  26. for a drive automatically, traversing all the directories of a disk
  27. and producing the database.  The format of the command is:
  28.  
  29.   makedir c: zip OFF > filelist.dat
  30.  
  31. where  c: is the drive letter of the cd-rom, zip is the name of the
  32. default file extension and OFF tells MAKEDIR not to include the
  33. drive: in the database, mainly so that CD rom developers can put
  34. the database on the cdrom and have the users run the door from the
  35. cd rom, whatever drive it might be installed on.
  36.  
  37.  
  38.