;
; FILE ARCHIVE CONVERTER
;
; Copyright 1994 Colin Birch
;
; The Dog House BBS - 01443 400327 24 Hours
;
;
;
; Directory for holding temporary work files - default = current dir
;
; Example - WORKDIR D:\ARCON
;
WORKDIR
;
;
;
; 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
;
ADFILE P C:\RA\THISONE.COM
ADFILE P C:\RA\RUNME.COM#C:\RA\FONT.DAT
ADFILE A F:\TEST.FIL
;
;
; 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 UNRAR x
;
;
; 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
;
;
;
;
; End of ARCON.CTL