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 / JSAGE / ZSUS / Z3HELP / M.LBR / MOVE.HZP / MOVE.HLP
Text File  |  2000-06-30  |  3KB  |  76 lines

  1. ;
  2.                                    MOVE.COM                                   
  3.  
  4.              Size (recs) CRC   Version    Author/Latest Issue      Disk
  5. MOVE.COM       3k (20)   1A32  2.2        Howard Goldstein 12/89   Z3COM6
  6. MOVE.3OM       3k (20)   698E  2.2        Howard Goldstein 12/89   Z3COM6
  7. MOVE.4OM       4k (25)   F3A9  2.2        Howard Goldstein 12/89   Z3COM6
  8.  
  9.   1- Syntax/Options  2- Notes                                                 
  10.  
  11.  
  12.  
  13.    MOVE  moves files from one area to another on the same drive.   It  permits 
  14. wildcard filename declarations and also directory DU and DIR forms.   Only one 
  15. byte  is changed in the directory storage area (track 2 of the  diskette)  for 
  16. each file moved,  so operation is quicker than disk-to-disk copying.  MOVE can 
  17. be handy even if PUBLIC directories are available.  Vs 2.0 by Dennis Wright.
  18. :1
  19.  
  20.    Syntax:  MOVE [dir1:]afn [dir2:] [/o]
  21.  
  22.   Options:  Q                  <-- query
  23.  
  24.             S                  <-- skip
  25.  
  26.             O                  <-- overwrite
  27.  
  28.  
  29.     Usage:  MOVE afn dir:      <-- moves from current to dir:
  30.  
  31.             MOVE dir:afn dir1: <-- moves from dir: to dir1:
  32.  
  33.             MOVE dir:afn       <-- moves from dir: to current
  34. :2
  35.  MOVE Notes - 1/3 
  36.  
  37.    a. Version 2.2 updates (12/04/89):
  38.       - Bug fixed in handling of large files. 
  39.       - Move algorithm modified for increased speed.   Now  uses "search next" 
  40.         and does only one  write  per directory  sector  per  file  instead of 
  41.         possibly four.
  42.       - Command line parsing code cleaned up.
  43.       - Special handling for stand-alone user numbers removed.
  44.       - Code fixed to work with extended environment.  
  45.       - Code shortened in several places.
  46.       - Call to FRESET added just  before deleting  a file in  the destination
  47.         area to avoid problems when running under DRI BDOS.
  48.       - Conditional assembly added for Type 4.
  49.  MOVE Notes - 2/3 
  50.  
  51.    b. Version 2.1 updates (12/28/87)
  52.       - Adds ZCPR33 Type 3 format with safety header, search for an empty user 
  53.         area instead of bombing out everything in user 31, 
  54.       - Establishes DSEG - with initialization to assure safe re-entry with GO
  55.         command.
  56.       - Fixes wildcard FCB (had too many "?"s).  
  57.       - Allows legitimate  DU/DIR  destination  specs  without  colons,  ditto 
  58.         standalone user numbers.  
  59.       - Adds intelligent help message (change name to  MAKE  or  MV, help also 
  60.         changes).  
  61.       - Scanning code ATTEMPTS  to  follow  all  Z33/BGii  stipulations  where
  62.         applicable
  63.       - 2.1 "A" (12/30/87) adds Bridger Mitchell's FRESET routine.
  64.       - 2.1 "B" (12/31/87) adds wildcard to  both  extent  bytes  before  file 
  65.         existence test in "mainloop:",  clears carry flag before "sbc hl,de" a 
  66.         little after the call to "eval10".
  67.  MOVE Notes - 3/3 
  68.  
  69.    c. Version 2.0 updates (02/26/87):
  70.       - Fixes drive selection bug. 
  71.       - Adds query as default option. 
  72.       - Reports directories in DU:DIR form.
  73.  
  74.    d. See  alias MV (Z-News 204-2) which also accomplishes direct file-move 
  75.       using MCOPY and ERASE.
  76.