;
; FILE ARCHIVE CONVERTER
;
; Copyright 1994/99 Colin Birch
;
; The Dog House BBS - 01443 400327 24 Hours
;
; Fidonet 2:442/618
;
; Email: cbirch@dog-house.demon.co.uk
;
; WWW : http://www.dog-house.demon.co.uk
;
;
; Directory for holding temporary work files - default = current dir
; NOTE : ARCON deletes all files from directory after use so DO NOT
; use a root directory
;
; Example - WORKDIR D:\ARCON
;
WORKDIR P:\ARCON
;
;
;
; Files to add to archive
; Format:-
; ADFILE <P/A> <path + filename><#><2nd file><#><3rd file>
;
; where P prompts before adding - A doesn't prompt
; up to 10 files can be specified all seperated by the ~#~ character
;
; 1st example would prompt before adding the file C:\RA\THISONE.COM
; 2nd example would prompt before adding files C:RA\RUNME.COM and C:\RA\FONT.DAT
; Last example would automatically add the file F:\TEST.FIL to the archive
; Don't forgrt to remove the leading ~;~
;
; ADFILE P C:\RA\THISONE.COM
; ADFILE P C:\RA\RUNME.COM#C:\RA\FONT.DAT
; ADFILE A F:\TEST.FIL
;
;
;
; Do you want to add an archive comment ? ( Y/N )
; NOTE - This is NOT available on LHA/LZH archives
;
ADDCOMMENT p
;
;
; Name and path of text file to add as an archive comment
;
;
COMMENTFILE C:\RA\READ.IT
;
;
; Alternative method to add file comments. Give path and name of a list of
; text files. ARCON will then randomly choose a comment file from this
; list.
; NOTE : This option will overide the COMMENTFILE option.
;
COMMENTPATH C:\RA\THD\LIST.TXT
;
;
; Archive type and DOS command to unarchive retaining full paths within arc.
;
UNARC ZIP PKUNZIP -d
UNARC ARJ ARJ x -y
UNARC LZH LHA x
UNARC RAR RAR x -std -y
;
;
; Archive type and DOS command to re-archive retaining full paths within arc.
;
REARC ZIP PKZIP -p -r
REARC ARJ ARJ A -r
REARC LZH LHA A /r2x1
REARC RAR RAR A -r
;
;
;
; Archive type and DOS command to list files within an archive
;
ARCLIST ZIP PKZIP -vb
ARCLIST ARJ ARJ L
ARCLIST LZH LHA V
ARCLIST RAR RAR L
;
;
; Archive type and DOS command to delete files within an archive
;
DELARC ZIP PKZIP -d
DELARC ARJ ARJ D
DELARC LZH LHA D
DELARC RAR RAR D
;
;
; Archive type and DOS command to update a file within an archive
;
UPDATE ZIP PKZIP -u
UPDATE ARJ ARJ u
UPDATE LZH LHA u
UPDATE RAR RAR u
;
;
; Should ARCON archive files with an unknown extension?
; For example, ARCON normally only archives files with known archiver
; extensions such as .ZIP or .RAR. If the following is set to YES then
; other extensions such as .TXT .JPG .GIF will be archived
;
ARCHIVE_ALL No
;
;
; Should arcon check .EXE files to see if they are self extracting .EXE
; files and, if they are, convert them?
;
CHECKEXE Yes
;
;
; List of file to be automatically deleted from archives
; ( Remove leading ~;~ and add file name - wild cards are valid )
; Up to 100 files may be listed
;
;
;DELFILE (place file name here - wild cards valid - example below)
; DELFILE TEST.BAT
; DELFILE FATAL.TXT
;
;
; As an alternative to DELFILE the DELLIST entry may be used. This
; gives the name of a text file containing file names to be removed
; during conversion.
;
DELLIST C:\RA\UTILS\RAFT\DEL.LST
;
;
;
; List of lines/phrases to search FILE_ID.DIZ file for and remove
; Up to 100 entries allowed
;
;
DELTEXT THIS FILE LEACHED FROM
DELTEXT THIS FILE WAS LEACHED FROM
DELTEXT THIS FILE SAW
;
;
; Command line for external virus scanner - up to 10 entries may be defined
; ARCON defaults to McAffee's SCAN.EXE if entry left blank
; Virus scanner MUST be in a DOS path
;
;
; I've changed scan.exe to cv.exe as some virii look for scan.exe and don't
; alter it. If it's called cv.exe it would get infected and warn next time
; it's run
;
SCAN CV *.*
SCAN F-PROT /NOBOOT *.*
;
;
; Path and name of external file viewer
;
;
VIEWER LIST.COM
;
;
; Path and name of external text editor
;
EDITOR C:\DOS\EDIT.EXE
;
;
; Path and name for optional log file. Leave blank for no log
;
LOGFILE I:\LOGS\ARCON.LOG
;
;
; End of ARCON.CTL