home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / sources / wanted / 3724 < prev    next >
Encoding:
Internet Message Format  |  1992-07-23  |  1.4 KB

  1. Path: sparky!uunet!wupost!gumby!destroyer!sol.ctr.columbia.edu!emory!wa4mei!nanovx!mycro!scott
  2. From: scott@mycro.UUCP (Scott C. Sadow)
  3. Newsgroups: comp.sources.wanted
  4. Subject: Re: Copy program
  5. Message-ID: <1992Jul23.233317@mycro.UUCP>
  6. Date: 24 Jul 92 03:33:17 GMT
  7. References: <92203.152105GNR100@psuvm.psu.edu>
  8. Lines: 27
  9.  
  10. In article <92203.152105GNR100@psuvm.psu.edu>, GNR100@psuvm.psu.edu writes:
  11. >
  12. >      Is there a program available to copy files from a hard drive to a
  13. >floppy that will detect a shortage of space to write to and inform the user
  14. >to insert a new disk, without losing track of what files have been copied,
  15. >then continue with the copy operation?  Could some one tell me where I can get
  16. >it if it exists?  If it doesn't, how about some help writing one?
  17. >          Thanks.
  18. >            gnr100@psuvm.psu.edu
  19.  
  20.  
  21. If you are using DOS on a PC:
  22.  
  23. One quick way is to use the "ATTRIB +A" command to turn on the archive bit
  24. on all of the files you want copied. ("ATTRIB -A" will turn off the bit for
  25. the files you don't want.)  Then use the "XCOPY /M C: A:" command to copy
  26. files from the hard drive to the floppy. When the floppy is filled, XCOPY
  27. stops. Put in a new floppy and re-do the "XCOPY" command again. (The /M
  28. parameter tells XCOPY to copy all files with the archive bit set, and turn
  29. off the archive bit after the copy)
  30.  
  31. For more info, see the doc on these 2 commands...
  32.  
  33.  
  34.    Scott C. Sadow
  35.    scott@mycro.UUCP
  36.    ...gatech!nanovx!mycro!scott
  37.