home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / telecomm / stkeep.lzh / BBS / DOCS / BBS_BACK.DOC < prev    next >
Encoding:
Text File  |  1993-01-02  |  2.2 KB  |  55 lines

  1. ST-Keep System Backup Program
  2. Copyright 1992 by Andrew P. Studer
  3.  
  4. NOTE:  This program and associated files may be freely copied as long as it
  5.        remains in its original format.
  6.  
  7. WARNING:  I will not be held responsible for any damage done to your files,
  8.           property, or other possessions as a result of using this program,
  9.           nor do I make any warranties or guarantees regarding this program.
  10.  
  11. Description
  12. -----------
  13. This program will backup, using compression, all the files which you specify
  14. into a file that is named based on the current date (i.e.  07_06_92.LZH) for
  15. better file management.
  16.  
  17. Instructions
  18. ------------
  19. The program should be set up as an EVENT within ST-Keep or your unattended
  20. mailer (although you could run it manually) and doesn't require any
  21. parameters.  It does, however, require a data file from which it reads the
  22. required information to create the archive.  The data file should be named
  23. STK_BACK.SYS and reside in the same folder as BBS_BACK.PRG.  The structure of
  24. the data file is as follows:
  25.  
  26. Line 1:  pathname to save archived file to (ending with a backslash)
  27. Line 2:  pathname and filename of your archiver
  28. Line 3:  up to 100 lines of files to backup
  29. ...
  30. Line 103: last possible file to backup
  31.  
  32. Example:
  33.  
  34. F:\BACKUP\
  35. C:\UTIL\ARC\LHARC.TTP
  36. C:\BBS\*.SYS
  37. C:\BBS\MSG\*.MSG
  38. C:\BBS\SYSOP.MSG
  39.  
  40. As you can see, I have my archived files sent to the "F:\BACKUP\" folder and
  41. use LHARC.TTP to archive the files that follow.  All the *.SYS files in the
  42. \BBS folder on drive C: are archived along with any *.MSG files in the \MSG
  43. folder inside \BBS in addition to the SYSOP.MSG file in the \BBS folder.
  44.  
  45. Only ARC.TTP and the various LHARC.TTP (LZH201?.TTP, etc...) programs will
  46. work as the BBS_BACK.PRG utility uses "u" (update) as the archive command.
  47. The program will add the .ARC or .LZH extension to the date filename as
  48. required.
  49.  
  50. The backup will run faster if you use wildcards wherever possible, simply
  51. because it only executes the archiver program once per line when using
  52. wildcards, otherwise, it will run the archiver program once for every
  53. distinct file that it locates in the SYS file.  You could, however, type out
  54. the path and filenames of every single file that you wanted backed up.
  55.