home *** CD-ROM | disk | FTP | other *** search
- ;
- ; The RCVT Convertor
- ; ~~~~~~~~~~~~~~~~~~
- ; Archive Conversion Utility version 1.02
- ; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- ; Configuration file
- ; ~~~~~~~~~~~~~~~~~~
- ;
- ;
- ; 1. Options:
- ;
- ; OnError NextArchive | Abort
- ;
- ; The value of this option tells RCVT whether to continue
- ; conversion with the next archive when error in the current
- ; archive is reported by archiver. Set this option to 'Abort'
- ; if you want RCVT to stop process archives when error occured.
- ;
- OnError NextArchive
- ;OnError Abort
- ;
- ;
- ;RepackRatio <Percent>
- ;
- ; Specifies lowest acceptable compression ratio
- ; after repacking.
- ;
- ;RepackRatio 100
- ;
- ;
- ; Add <filename>
- ;
- ; Specifies the name of the file which must be added to every
- ; repacked archive. Full pathname should be provided.
- ; Multiple "Add" strings are allowed.
- ;
- ; Add C:\BBS\MYBBS.ANS
- ; Add C:\BBS\MYBBS.LST
- ;
- ;
- ; Del <filename>
- ;
- ; Specifes file(s) that should not be placed into the repacked
- ; archive. Wildcards using is allowed. Root directory of the
- ; archive is assumed if no full path given.
- ; Multiple "Del" strings are allowed.
- ;
- ; Del *.frm
- ;
- ;
- ; Scan <filename-to-run>
- ;
- ; You can set up program call to process files extracted from
- ; the source archive before repacking. For instance, antivirus
- ; program to scan files for computer viruses. Should the program
- ; return non-zero exit code (ERRORLEVEL) the source archive will
- ; not be repacked and corresponding message will be placed into
- ; the log file RCVT.LOG.
- ; Multiple "Scan" strings are allowed.
- ;
- ; Scan C:\TOOLS\ANTIVIR\AIDSTEST *.* /f/g
- ;
- ;
- ; Filelist <filename>
- ;
- ; Specifies the file where source archives are listed.
- ; The name of the source archive after successful conversion
- ; is replaced with the new one as well as the actual size if
- ; possible. If full path is not given then filelist in the
- ; same directory with the archive is searched.
- ; Multiple "Filelist" strings are allowed.
- ;
- Filelist FILES.BBS
- ;
- ;
- ; 2. Archiver definitions:
- ;
- ; Up to 16 archiver sections could be defined here with the following calls:
- ;
- ; PACK to pack files into the archive (create the archive)
- ; EXTR to extract files from the archive
- ; TEST to test files in the archive
- ;
- ; Master archive definition: converting to RAR format
- .rar
- PACK RAR a -s -c- -r -z$CMT$
- EXTR RAR x -c- -y -av-
- TEST RAR t -c-
-
- ; Converting from old (prior to version 1.50) RAR format
- .rar 52457E5E
- PACK RAR a -c- -r -z$CMT$
- EXTR RAR x -c- -y -av-
- TEST RAR t -c-
-
- ; Converting from arj format
- .arj
- PACK ARJ a -r -a1 -z$CMT$
- EXTR ARJ x -y -v
- TEST ARJ t
-
- ; Converting from zip format
- .zip
- PACK WINRAR a -r
- EXTR WINRAR x -y
- TEST WINRAR t
-
- ; Converting from lzh format
- .lzh
- PACK LHA a /rxp
- EXTR LHA x
- TEST LHA t
-
- ; Converting from uc2 format
- .uc2
- PACK UC a -s
- EXTR UC e -f -s
- TEST UC t
-
- ; Converting from ha format
- .ha
- PACK HA ar
- EXTR HA xy
- TEST HA t
-
- ; Converting from cab format (disabled by default)
- ;.cab
- ;EXTR EXTRACT /Y /E /A
-