home *** CD-ROM | disk | FTP | other *** search
/ Game Killer / Game_Killer.bin / 153.MCP.TXT < prev    next >
Text File  |  1993-07-03  |  22KB  |  586 lines

  1. Master Copy  --  MCP.EXE  --  The Better XCOPY
  2.  
  3. Version 1.10
  4. July 3, 1993
  5.  
  6. Copyright (C) 1993 Michael Paul Johnson
  7.  
  8. INTRODUCTION
  9.  
  10. MCP (Master Copy) is kind of like XCOPY, but it normally only 
  11. overwrites older files and it can move files.  It was written 
  12. primarily for use in keeping directory structures shared by 
  13. different people (or by the same person on different computers) 
  14. in synchronization with each other.  It is also a quick way to 
  15. implement disk mirroring style backups.
  16.  
  17. If you have a PostScript printer, you can print this document by 
  18. copying MCP.PS to it.  If not, use MCP.TXT.
  19.  
  20. RUNNING MCP
  21.  
  22. MCP is a DOS command line utility with a syntax that is an 
  23. extension of the XCOPY that comes with DOS:
  24.  
  25. MCP source [destination] [switches]
  26.  
  27. Switches can be:
  28.  
  29. /A = copy only files with Archive bit set (leave source archive 
  30. bit set).
  31. /B = ask permission Before overwriting each existing destination 
  32. file.
  33. /C = Copy & overwrite all files except those with identical 
  34. date, time & size.
  35. /D = copy files with Date the same or later than Date given 
  36. /D:mm-dd-yyyy /D:dd.mm.yyyy /Dmm/dd/yy or /Ddd.mm.yy.
  37. /F = Force overwrite of system, hidden, and read only files.
  38. /H = Copy system and Hidden files as well.
  39. /J = Just copy files that already exist in destination 
  40. directory.
  41. /L = List lots of loud verbose output (for troubleshooting).
  42. /M = copy only files with archive bit set (Modify source archive 
  43. bit).
  44. /N = No overwrite.
  45. /O = Overwrite destination files.
  46. /P = Prompt before copy.
  47. /Q = Quiet (report only errors).
  48. /R = Rename or move files.
  49. /S = /E = recurse through Subdirectories (& create Empty ones).
  50. /T = Stop Twirling "propeller" (useful for redirection).
  51. /U = Update (overwrite only older files -- the default mode).
  52. /V = This switch doesn't cause an error message, but it doesn't 
  53. do anything. It is included so that batch files written for 
  54. XCOPY can use MCP with the same switches.  (/V turns verify on 
  55. in XCOPY).  To turn on verify, use the DOS command VERIFY ON 
  56. before using MCP.
  57. /W = Wait for keystroke before starting copy
  58. /? = Show help screen.
  59.  
  60. On the command line, source is a file name or directory name, 
  61. which may optionally include drive and path.  It may also 
  62. include DOS wild cards ? and *.  If the source is a drive or 
  63. directory, the file specification *.* is assumed.
  64.  
  65. The destination is a file name or directory.  If no destination 
  66. is specified, the current directory is assumed.  If there are 
  67. wild card characters in the destination file name, they will be 
  68. filled in with the corresponding characters in the source file 
  69. name.  If it is not obvious if the destination is a file or 
  70. directory, you may be asked which you meant.  To ensure that the 
  71. destination is interpreted as a directory instead of a file, end 
  72. the directory name in "\" or ensure that the destination 
  73. directory already exists.  If the destination directory does not 
  74. exist, it will be created.
  75.  
  76. Switches all start with "/" (not "-", since - is a valid file 
  77. name character in DOS), and may be before, between, and/or after 
  78. the source and destination.  Switches may be combined.  In case 
  79. of a conflict between switches, the one that is farthest to the 
  80. right on the command line takes precedence.  For brevity, 
  81. command line switches may be run together after a single "/".  
  82. Switches are not case sensitive.
  83.  
  84. /A (Archive) and /M (Modify archive) both specify that only 
  85. files that have the DOS directory archive bit set (indicating 
  86. that they have been changed since they were last backed up) 
  87. should be copied.  /A does not alter the archive bit on the 
  88. source file. /M clears the archive bit of the source file to 
  89. indicate that it has been backed up.  The archive bit of the 
  90. destination file is always set when using MCP.  These options 
  91. can be used for backing up data when the largest file you want 
  92. to back up will fit on your destination media.  If the largest 
  93. file you want to back up is bigger, a regular backup program is 
  94. more appropriate than MCP.
  95.  
  96.  However, for some small but important files, backing up with a 
  97. copy command like MCP makes more sense, because the file itself 
  98. is not altered, making restoration possible even without the 
  99. original backup program.
  100.  
  101. For example, 
  102.  
  103. MCP /A C:\WORK\DOC\*.* A:
  104.  
  105. copies all files in C:\WORK\DOC to the floppy disk in A: that 
  106. have not been marked as backed up.
  107.  
  108. /B (ask Before overwrite) causes MCP to stop and ask if you want 
  109. to copy each file for which the destination file already 
  110. exists.
  111.  
  112. /C (Copy & overwrite all but identical date, time & size) will 
  113. cause all destination files with the same name but different 
  114. (older or newer) date & time or different size (smaller or 
  115. larger) to be overwritten.
  116.  
  117. /D (Date) is always followed by a date, with no space in between 
  118. the /D and the date.  The colon following the D is optional.  
  119. The order of the date is month day year if you use "/" or "-" to 
  120. separate the numbers in the date.  If you use "." to separate 
  121. the numbers in the date, the order is day month year.  The year 
  122. can be specified with either the last two digits or all four 
  123. digits. If you specify the last two digits, the year is assumed 
  124. to be in the range 1980 through 2079.  The month must be 
  125. expressed as a number between 1 and 12.  Leading zeros on month 
  126. and day are optional.
  127.  
  128. For example, the following commands all copy everything with a 
  129. file date on or after December 25, 1991 from the current 
  130. directory to D:\SAVE\.
  131.  
  132. MCP /D12/25/91 *.* D:\SAVE\
  133.  
  134. MCP /D:12/25/91 *.* D:\SAVE\
  135.  
  136. MCP *.* D:\SAVE\ /D12/25/1991
  137.  
  138. MCP /D12-25-91 *.* D:\SAVE\
  139.  
  140. MCP *.* /D12-25-1991 D:\SAVE\
  141.  
  142. MCP /D25.12.91 *.* D:\SAVE\
  143.  
  144. MCP /D:25.12.1991 *.* D:\SAVE\
  145.  
  146. /F Forces overwriting of Hidden, System, and Read Only files.  
  147. WARNING:  use this option with caution.  It is very useful for 
  148. some situations, but could have some undesired side effects if 
  149. you overwrite some files of this type.
  150.  
  151. /H (Hidden & system) allows files with the system and hidden 
  152. attribute to be copied.  Note that the XCOPY that comes with 
  153. MS-DOS 5.0 and MS-DOS 6.0 will not copy hidden files, but 
  154. earlier versions will.  The system and hidden attributes will be 
  155. applied to the destination files when they are present in the 
  156. source files.  Note:  copying the two hidden system files from a 
  157. boot drive to another drive will not necessarily make the 
  158. destination bootable.  Use the DOS SYS command for that 
  159. purpose.
  160.  
  161. /J (Just existing) causes only those files that already exist in 
  162. the destination directory to be copied over (and then only if 
  163. they are older, the /o switch is used, or the /b switch is used 
  164. and you answer Y for yes).
  165.  
  166. /L (Loud) causes extra screen output to be generated, including 
  167. the names of all files that are skipped.
  168.  
  169. /N (No overwrite) prevents any destination files from being 
  170. overwritten, regardless of the file dates and attributes 
  171. involved.  The default is to allow overwrites of destination 
  172. files with an earlier file date.  This is the opposite of /O 
  173. (Overwrite always).
  174.  
  175. /O (Overwrite always) causes destination files to be overwritten 
  176. regardless of its file date.  The default is to allow overwrites 
  177. only of destination files with an earlier file date.  This is 
  178. the opposite of /N (No overwrite).
  179.  
  180. /P (Prompt) asks you if you want to copy each file with a Y/n 
  181. prompt.  "N" or "n" will cause the file to be skipped.  Most 
  182. other keys, including "Y" and "y" will cause the file to be 
  183. copied.  The "Enter" key need not be pressed after the "y" or 
  184. "n".
  185.  
  186. For example,
  187.  
  188. MCP /P *.* A:
  189.  
  190. lets you pick exactly which files you want to copy to drive A:, 
  191. one by one.
  192.  
  193. /Q (Quiet) suppresses all screen output except for error 
  194. messages and the help screen in response to a command line error 
  195. or /?.
  196.  
  197. For example,
  198.  
  199. MCP /Q /M C:\WORK\*.* F:\MASTER\FRED\
  200.  
  201. in a network login script would be a subtle way to back up some 
  202. critical directory on a user's hard disk to a network directory, 
  203. where it could be moved to tape or something.
  204.  
  205. /R (Rename or move) causes files to be renamed if the source and 
  206. destination are on the same disk, or copied then the original 
  207. deleted (after a successful copy) if the source and destination 
  208. are on different disks.  If the copy fails, the original is left 
  209. intact.  When used with the /S option, emptied subdirectories 
  210. are not removed.
  211.  
  212. For example,
  213.  
  214. MCP C:\STUFF\*.DOC D:\OLDJUNK\ /R
  215.  
  216. moves every .DOC file in C:\STUFF\ to D:\OLDJUNK\.
  217.  
  218. /S or /E (Subdirectory copy) copies files and subdirectories 
  219. from the destination to the source, making subdirectories as 
  220. needed. Empty subdirectories are created as well.  Using /S 
  221. and/or /E on the command line of MCP is the same as using both 
  222. /S and /E on the command line of XCOPY.
  223.  
  224. /U (Update) overrides a previous /o, /b, or /n on the command 
  225. line and returns MCP to its default handling of existing 
  226. destination files (overwrite them only if they are older).
  227.  
  228. /V does nothing.  To turn verify on, use the command VERIFY ON 
  229. before running MCP.
  230.  
  231. /W (Wait) causes the prompt "Press a key when ready to start 
  232. copy..." to be displayed, and the program to pause until you hit 
  233. a key before starting the copy process.  This is for use with 
  234. floppy only systems, where the MCP command may reside on a disk 
  235. other than the one you want to do the copy on.
  236.  
  237. /? (Help) shows the help screen.
  238.  
  239. MOVING FILES
  240.  
  241. Since moving files is a fairly common operation, you may want to 
  242. define a doskey alias to move files (DOSKEY MV=MCP /R $*) or use 
  243. the MV.BAT batch file.  If you are using a version of DOS prior 
  244. to 3.3, delete the @ from the beginning of the MCP command.  
  245. This command lets you move files safely.  Note that the original 
  246. file will not be deleted if it is marked as "system" or "read 
  247. only."  Note also that when moving entire directory structures, 
  248. source subdirectories are not deleted.  To delete entire 
  249. directory structures or to delete system or read only files, you 
  250. can use the DELETE command (also written by Mike Johnson).
  251.  
  252. ZERO LENGTH FILES
  253.  
  254. Unlike XCOPY, MCP copies zero length files and, if copying 
  255. subdirectories, always copies empty subdirectories.  It also 
  256. duplicates the file attributes (system, hidden, read only) of 
  257. the source file in the destination file, except for the archive 
  258. bit, which is always set in the destination file.
  259.  
  260. PROMPTS
  261.  
  262. There are several prompts possible in MCP.  At each of the 
  263. prompts, the default answer (if applicable) is indicated with a 
  264. capital letter.  Answers to the prompts are not case sensitive, 
  265. and are all only one keystroke.  Pressing "Enter" after a letter 
  266. is not required.  The "Enter" key is ignored at all prompts 
  267. except for the "Press a key when ready to start copy . . ." 
  268. prompt caused by the /W option.  In addition to the listed 
  269. responses at any prompt, "Esc", "Ctrl-C", and "Ctrl-Break" will 
  270. terminate MCP.  "Ctrl-Break" will also terminate a copy in 
  271. progress, even if the program is not looking for an answer to a 
  272. question.
  273.  
  274. filename Y/n?
  275.  
  276. This is the format used in asking if you want to copy a 
  277. particular file when you put /P on the command line.  "N" means 
  278. that you do not want to copy the file, and most other keys 
  279. (including "Y") mean that you do want to copy the file.
  280.  
  281. Only 512 bytes available on A:.  filename requires 1234 bytes. 
  282. Retry with new disk, Try new disk later, Skip, or Cancel 
  283. (r/T/s/c)?
  284.  
  285. If your destination is on a fixed disk, press "S" to skip just 
  286. this file or "C" to cancel and exit MCP.  If your destination is 
  287. a removable disk, you may skip the current file or cancel as 
  288. with a fixed disk destination.  You may also wish to change 
  289. disks and then press "R" to retry copying the current file, or 
  290. press "T" to try copying the next file (which may fit) and add 
  291. the current file to a list to be tried again later (on a 
  292. different floppy disk).  Most other keys act the same as "T".
  293.  
  294. No more room on drive A:
  295.  
  296. Retry with new disk, Skip or Cancel (R/s/c)?
  297.  
  298. Your destination disk has no more room on it.  Change the disk 
  299. and press "R" to retry, or "C" to exit the MCP program.
  300.  
  301. Error writing to filename.
  302.  
  303. Retry, Skip, or Cancel (r/S/c)?
  304.  
  305. MCP encountered one of many possible errors (insufficient 
  306. network rights, bad disk sectors, hardware failures, disk full 
  307. even though it had enough room to start the copy, etc.).  "R" 
  308. restarts the copy from the beginning of the file.  "S" skips 
  309. this file and tries the next.  "C" cancels the copy and exits 
  310. MCP.
  311.  
  312. Does destination specify a File name
  313.  
  314. or Directory on the target (f=File, D=Directory)?
  315.  
  316. The destination directory is not an existing directory and the 
  317. name does not end with "\", and there may be more than one 
  318. source file (indicated by wild cards in the name or a /S or /E 
  319. switch). Press "F" if you intended that the destination is a 
  320. file name, or "D" if you intended that the destination is a 
  321. directory.  If you decide that the command line was in error, 
  322. press "Esc".
  323.  
  324. Press a key when ready to start copy . . .
  325.  
  326. You used the /W option.  Press "Esc", "Ctrl-C", or "Ctrl-Break" 
  327. if you decide you really didn't want to copy anything after all, 
  328. or press any other key to start the copy process.
  329.  
  330. ERROR MESSAGES
  331.  
  332. No matching files found.
  333.  
  334. No files matching the file specification you provided were found 
  335. to copy.  Check the spelling of your source file(s), the 
  336. existence of those files, and the network rights pertaining to 
  337. those files.
  338.  
  339. Break!
  340.  
  341. You pressed Ctrl-Break, Ctrl-C, or Esc to halt the program.
  342.  
  343. Unable to create filename
  344.  
  345. The destination file name may have been on an invalid drive, 
  346. have contained invalid characters, been in the root directory 
  347. with all directory entries filled, been on a network directory 
  348. with insufficient rights, been too long for DOS or the network 
  349. operating system to create, or some other similar problem.
  350.  
  351. Files may not be copied onto themselves.
  352.  
  353. The first step in copying a file is to create a new file of zero 
  354. length with name of the destination file.  If the source and 
  355. destination files are the same, this action would destroy the 
  356. source file.  It is also possible to get this error message when 
  357. the source or destination drive is invalid.
  358.  
  359. Destination path is too long.
  360.  
  361. The most likely cause of this error message is starting a 
  362. recursive copy command (like MCP /S C:\*.* C:\SUBDIR\).  This 
  363. causes everything in the root directory of drive C: to be copied 
  364. to C:\SUBDIR\ and C:\SUBDIR\SUBDIR\ and C:\SUBDIR\SUBDIR\SUBDIR\ 
  365. and so on.  Older versions of XCOPY allow this, the latest one 
  366. does not.  MCP allows the recursion to go on until the resulting 
  367. path name exceeds DOS limits.  This is a great way to fill up a 
  368. hard disk in a hurry.
  369.  
  370. Not enough memory to run MCP.EXE
  371.  
  372. Try reducing the number of TSR programs, or if you are shelled 
  373. out to DOS from another program, exit that other program.
  374.  
  375. Access denied.
  376.  
  377. DOS (or some network software) returned an error code indicating 
  378. that the operation was not allowed.  Some things that can do 
  379. this is trying to create a directory when a file with the same 
  380. name already exists or trying to write to a network directory 
  381. where you have insufficient rights.
  382.  
  383. Bad file number.
  384.  
  385. Something strange is going on that confused DOS and/or MCP, 
  386. probably some error associated with a multitasking environment.
  387.  
  388. Attempt to copy more than one file to file.
  389.  
  390. MCP does not concatenate files (use DOS COPY to do that), so 
  391. copying more than one file to a single file means that all that 
  392. ends up in the destination file is the last file copied.  If 
  393. this were done with the /R option, all but the last file would 
  394. be destroyed.  Therefore, only one file is allowed to be copied 
  395. to a file.  The trap that catches this is not foolproof 
  396. (although it is reasonably difficult to fool), so you should 
  397. still take care on the command line to avoid specifying such an 
  398. action.
  399.  
  400. Unable to open filename
  401.  
  402. The specified file name may not be valid, or may be on a network 
  403. directory where you have insufficient rights.
  404.  
  405. Ran out of memory keeping track of files to retry.
  406.  
  407. Each file name source and destination that is "remembered" to 
  408. try later when you run out of room copying to a diskette takes 
  409. up some conventional RAM.  After several thousand of these (more 
  410. or less, depending on how much RAM you have available), you may 
  411. run out.
  412.  
  413. ERRORLEVEL
  414.  
  415. When running MCP in a batch file, you can test for the following 
  416. values of ERRORLEVEL after MCP runs:
  417.  
  418. 0 = Normal completion.
  419.  
  420. 1 = No matching files found to copy.
  421.  
  422. 2 = "Ctrl-Break", "Ctrl-C", or "Esc" pressed, or copy canceled 
  423. with "C".
  424.  
  425. 3 = Unable to write to destination file.
  426.  
  427. 4 = Attempted to copy file onto itself.
  428.  
  429. 5 = Destination path is too long.
  430.  
  431. 6 = Not enough memory to run.
  432.  
  433. 7 = Access denied.
  434.  
  435. 8 = Bad file number error returned by DOS.
  436.  
  437. 9 = Attempt to copy more than one file to one destination file.
  438.  
  439. 11 = Command line error or help requested.
  440.  
  441. 12 = Unable to open input file.
  442.  
  443. 13 = Ran out of memory keeping track of files to retry.
  444.  
  445. NAME TRIVIA
  446.  
  447. MCP comes from M as in Master or Mike's and CP as in the name 
  448. for the UNIX copy command.  Call it whatever you like, by 
  449. renaming it, creating an alias with DOSKEY or a similar utility, 
  450. or by creating a batch file.
  451.  
  452. LIMITATIONS
  453.  
  454. MCP does not do concatenation.  It does not get the date format 
  455. from the DOS country table.  It does not do Japanese dates in 
  456. year-month-day format.  All of its error messages are in 
  457. English. It does not do a full screen interface.  It doesn't 
  458. skip zero length files just because they are zero length.  It 
  459. doesn't skip creation of empty subdirectories when /S is used. 
  460. /V does absolutely nothing (use the DOS command VERIFY ON before 
  461. MCP for the same effect).  It doesn't remove any subdirectories, 
  462. nor does it preserve subdirectory attributes (like the hidden 
  463. bit) when copying subdirectories.  It does not copy to devices 
  464. like LPT1 or PRN.  It cannot copy from defective disk media.  It 
  465. doesn't predict winning lottery numbers.  On the other hand, it 
  466. does do some things that I always thought that XCOPY should have 
  467. done. 
  468.  
  469. LEGAL NOTICES
  470.  
  471. Copyright (C) 1992-1993 Michael Paul Johnson.  All rights 
  472. reserved.  No warranty. All trademarks mentioned herein belong 
  473. to their respective owners.  This is shareware.  To register, 
  474. please send $15.00 (or $25.00 if you also want original disks & 
  475. printed documentation; $100 for site license for unlimited use 
  476. within one corporation) to:
  477.  
  478.         Mike Johnson
  479.         PO BOX 1151
  480.         LONGMONT CO 80502-1151
  481.         USA
  482.  
  483. Registration entitles you to support on the Rainbow Missions BBS 
  484. (303-938-9654) and by mail, and to notification of major 
  485. upgrades at discount rates.  Minor upgrades (like 1.04 to 1.05) 
  486. are free for the downloading from the Rainbow Missions BBS, or 
  487. available to registered users on disk for $10.
  488.  
  489. Although I try to write perfect software, there is a chance that 
  490. I goofed up in some way.  If you find this to be the case, 
  491. please let me know so that I can repair it.  Because I can't 
  492. test every possible use of this software on every system that it 
  493. might be run on, and because I have no control over the way 
  494. shareware gets passed around, you use this software entirely at 
  495. your own risk. Prices are subject to change without notice.
  496.  
  497. HOW TO CONTACT THE AUTHOR
  498.  
  499. 1.  Leave a message at the Rainbow Missions BBS, 303-938-9654. 
  500. The latest version of this software will be posted there, as 
  501. well.
  502.  
  503. 2.  Write to Mike Johnson, PO Box 1151, Longmont CO 80502-1151, 
  504. USA.
  505.  
  506. 3.  Send electronic mail to CompuServe ID 71331,2332 or Internet 
  507. address mikej@exabyte.com.
  508.  
  509. 4.  Call Mike Johnson at home at 303-772-1773, Saturdays only.
  510.  
  511. VERSION HISTORY
  512.  
  513. 1.00  5 Sep 92  Initial release.
  514.  
  515. 1.01  7 Sep 92  Modified to allow recursive copies of hidden 
  516. subdirectories.
  517.  
  518. 1.02  9 Sep 92  Corrected handling of . and .. as source or 
  519. destination directory name.
  520.  
  521. 1.03 20 Sep 92  Added /C switch to specify overwrites of all but 
  522. identical files.
  523.  
  524. 1.04 22 Sep 92  Added /B switch to allow individual prompts for 
  525. overwrites.
  526.  
  527. 1.05  5 Oct 92  Improved safety feature that prevents copying or 
  528. renaming more than one file to the same destination file. Added 
  529. /J switch to allow selective copying only of files that already 
  530. exist in the destination directory.
  531.  
  532. 1.06 11 Dec 92  Added /T switch for better results with 
  533. redirected output.
  534.  
  535. 1.07 14 Dec 92  Corrected command line scanning error that 
  536. sometimes caused /D switch to be falsely rejected.
  537.  
  538. 1.08  6 Feb 93  Increased depth of recursion possible for better 
  539. network compatibility.
  540.  
  541. 1.09 31 May 93  Corrected action with /P and /R when moving to a 
  542. destination on the same volume.
  543.  
  544. 1.10  3 Jul 93  Added warning message and ERRORLEVEL 1 exit if 
  545. no source files match the specification on the command line.
  546.  
  547. INVOICE
  548.  
  549. Remit to:                      Ship to:
  550.  
  551. Mike Johnson                   ________________________________
  552.  
  553. PO Box 1151                    ________________________________
  554.  
  555. Longmont CO 80502-1151         ________________________________
  556.  
  557.                                ________________________________
  558.  
  559.                                Contact person:
  560.  
  561.                                ________________________________
  562.  
  563.                                ________________________________
  564.  
  565. Quantity  Description               Unit Price      Total
  566.  
  567.           MCP registration with disk
  568. ________  & printed documentation.        $25.00  ______
  569.  
  570.           MCP single copy registration
  571. ________  only.                           $15.00  ______
  572.  
  573.           Site license for unlimited use
  574.           of MCP at one corporation
  575.           (includes one disk & one
  576. ________  printed manual).                $100.00 ______
  577.  
  578.                                           Total   ______
  579.  
  580. I prefer  5.25"____   3.5"____  disks.
  581.  
  582. Note that the MCP software has been delivered and accepted by 
  583. the customer.  Upon receipt of this paid invoice, the printed 
  584. documentation and disks paid for will be sent.
  585.  
  586.