home *** CD-ROM | disk | FTP | other *** search
/ swCHIP 1991 January / swCHIP_95-1.bin / chip / copy / quikco / quikcopy.doc next >
Text File  |  1995-12-11  |  4KB  |  61 lines

  1. QUIKCOPY.EXE (VERSION 1.1)
  2. Copyright (c) 1994, Bob Flanders and Michael Holmes
  3. -------------------------------------------------------------------------
  4.                   First Published in PC Magazine August, 1994 (Utilities)
  5. -------------------------------------------------------------------------
  6.  
  7. QUIKCOPY by Bob Flanders and Michael Holmes
  8.  
  9. PURPOSE:
  10.  
  11.          QUIKCOPY is a replacement for DOS's DISKCOPY command. Like DISKCOPY,
  12. which is found in DOS 6.2, QUIKCOPY can copy an entire disk in one pass, but
  13. it uses extended or expanded memory rather than a RAM disk. It can also speed
  14. the process by copying only used clusters.
  15. SYNTAX:
  16.  
  17. The syntax for QUIKCOPY is                           QUIKCOPY source-drive [target-drive] [/1] [/A]If the target-drive parameter is omitted, QUIKCOPY will assume that the
  18. source drive and the target drive are the same. The /1 parameter tells
  19. QUIKCOPY that you want to make only one copy of the source disk; you will
  20. not be prompted to change target disks after the first copy is completed.
  21. The /A parameter can be used to copy all of a disk regardless of whether
  22. a cluster is in use. This is the technique used by DOS's DISKCOPY command.
  23. REMARKS:
  24.  
  25.          When QUIKCOPY reads the source disk, it examines the disk structure
  26. to determine if the disk is DOS or non-DOS. Then, based on its findings,
  27. QUIKCOPY uses one of two copy algorithms: a used-cluster algorithm, where
  28. only the portions of the disk marked by DOS as used are copied, or a sector
  29. algorithm, which copies all sectors regardless of what is stored there.
  30. If you choose, you can use the /A switch to force QUIKCOPY to use the
  31. sector algorithm.
  32.          As with the DOS DISKCOPY command, you are restricted to copying
  33. data between disks of like format--1.2MB to 1.2MB, 1.44MB to 1.44MB, and
  34. so on.
  35.          QUIKCOPY goes beyond DISKCOPY in its reporting. It shows a bar
  36. graph of progress as it copies the disk and also displays the source
  37. disk label and capacity, the amount of memory needed, the type of copy
  38. algorithm employed, and other related information. Upon completion,
  39. QUIKCOPY issues a final report showing number of disks written and
  40. data-transfer rates in bytes per second.
  41. --------------------------------------------------------------------------
  42. Bob Flanders and Michael Holmes are president and vice president of NCI
  43. systems and coauthors of the books PC Magazine C LAB NOTES and C++
  44. COMMUNICATIONS UTILITIES.
  45. --------------------------------------------------------------------------Modifications Log                                                         
  46.                                                                           
  47. Version    Date     Author           Description                          
  48. -------  ---------  ---------------  --------------------------------     
  49.  0.90    18 May 94  Holmes/Flanders  Initial release beta release         
  50.  1.00    12 Jul 94  Holmes/Flanders  Released version                     
  51.  1.01    11 Aug 94  Holmes           Increased program stack to fix       
  52.                                       some copy problems                  
  53.  1.10    14 Sep 94  Holmes           Fixed problem w/last clusters        
  54.                                       not being copied and dropping       
  55.                                       a cluster from copy list.           
  56.                                       Special thanks goes to ..           
  57.                                         Bill Zimmermann for finding       
  58.                                         these bugs and their fixes        
  59.                                                                           
  60. **************************************************************************
  61.