home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / ENTERPRS / CPM / UTILS / F / MAKE27.ARK / MAKE27.DOC < prev   
Text File  |  1990-04-13  |  2KB  |  47 lines

  1.  
  2. Documentation for MAKE version 2.7 released 4/10/88
  3.  
  4. The assembled COM file in this library has been created from the
  5. supplied source code with the ZCPR3 and WHEEL equate set to "FALSE".
  6.  
  7. This primary purpose of this program is to allow one to change the user
  8. number of designated files on a designated drive to a different user
  9. number.  This is carried out without copying the files and then deleting
  10. the original files, rather, the user number tag in the disk directory is
  11. simply changed to reflect the new user number.  The program also has
  12. options to set files attributes of read-only, read-write, system, and
  13. directory, as well as archive or non-archive.  Files can also be erased
  14. or unerased.
  15.  
  16. The code assumes that the track and sector are set by the BDOS search
  17. functions and uses a simple BIOS write to update the directory.  Before
  18. using this program, test it on a garbage disk to make sure that it works
  19. with your system.
  20.  
  21. SYNTAX:         MAKE D:AFN O [/O]  (ALL)
  22.                 MAKE DU:AFN O [/O] (ALL)
  23.                 MAKE DIR:AFN O [/O] (ZCPR3 version)
  24.  
  25. where /O causes auto overwrite of same name file on destination
  26.  
  27. where the drive, drive/user, and named directory forms (where
  28. appropriate) are optional and where O is one of the options:
  29.  
  30. DIR:    new DIR for files (ZCPR3 version ONLY)
  31. DU:    new user # for files (D must match source,# after not valid)
  32. U:    new user # for files (# after not valid)
  33. nn      new user # for files
  34. R       set files to R/O
  35. W       set files to R/W
  36. S       set files to SYS
  37. D       set files to DIR
  38. A       set files to ARCHIVE
  39. N       set files to Non-ARCHIVE
  40. E       erase files
  41. U       unerase files
  42. blank   show status of files
  43.  
  44. The above options act only for files in the current user area. If a "#"
  45. is specified after the options, files from all user area will be
  46. affected.
  47.