Home » Personal collection » Acorn hard disk » unzip_tools » !Infozip » Routines/ReadMe

Routines/ReadMe

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » Personal collection » Acorn hard disk » unzip_tools » !Infozip
Filename: Routines/ReadMe
Read OK:
File size: 0B87 bytes
Load address: 0000
Exec address: 0000
File contents
Acorn-specific usage instructions
---------------------------------

An extra option ('I') has been added to the Acorn port: if it is specified
zip will not consider Image files (eg. DOS partitions or Spark archives when
SparkFS is loaded) as directories but will store them as single files. This
means that if you have, say, SparkFS loaded, zipping a Spark archive will
result in a zipfile containing a directory (and its content) while using the
'I' option will result in a zipfile containing a Spark archive. Obviously
this second case will also be obtained (without the 'I' option) if SparkFS
isn't loaded.

When adding files to a zipfile; to maintain FileCore compliance, all
files named "file/ext" will be added to the archive as "file.ext".
This presents no problem if you wish to use unzip to extract them on any
other machine, as the files are correctly named. This also presents no
problem if you use unzip for RISC OS, as the files are converted back to
"file/ext" format. The only problem appears when you use SparkFS to
decompress the files, as a file called "file.ext" will be extracted as
"file_ext", not what it was added as. You must be careful about this.

Case Specific. Depending on how you type the command, files will be added
exactly as named; in this example:
*zip new/zip newfile
*zip new/zip NewFile
*zip new/zip NEWFILE
will create an archive containing 3 copies of the same Risc OS file 'newfile'
called 'newfile', 'NewFile' and 'NEWFILE'. Please be careful.

The Acorn port conserves file attributes, including filetype, so if you
zip on an Acorn, and unzip on another Acorn, filetypes will be maintained
precisely as if you used uncompressed files. If you de-archive on another
machine (PC, Mac, Unix etc..), filetypes will be ignored, but the files
will be identical despite this. This feature is fully compatible with
SparkFS, so zipfiles created by zip will be correctly uncompressed (including
filetype, etc.) by SparkFS.

An additional feature went into this port to cope better with C-code
and extensions. This allows the acorn files "c.foo" to be added to the
archive as "foo/c", eventually appearing in the archive as "foo.c", allowing
for better handling of C or C++ code. Example:
*Set Zip$Exts "dir1:dir2:dir3"
*zip new/zip dir1.file
*zip new/zip dir2.help
*zip new/zip dir3.textfile
Creates a zipfile new/zip, with entries file.dir1, help.dir2, textfile.dir3.
The usual settings for Zip$Exts are "h:o:s:c", allowing C code to be added
to the archive in standard form.

A final note about the Acorn port regards the use of the 'n' option: this is
used to specify a list of suffixes that will not be compressed (eg. .ZIP,
since it is already a compressed file). Since RISC OS uses filetypes instead
of suffixes, this list of suffixes is actually considered as a list of
filetypes (3 hex digit format). By default, zip doesn't compress filetypes
DDC (Archive, Spark or Zip), D96 (CFS files) and 68E (PackDir).

00000000  0a 41 63 6f 72 6e 2d 73  70 65 63 69 66 69 63 20  |.Acorn-specific |
00000010  75 73 61 67 65 20 69 6e  73 74 72 75 63 74 69 6f  |usage instructio|
00000020  6e 73 0a 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |ns.-------------|
00000030  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
00000040  2d 2d 2d 2d 0a 0a 41 6e  20 65 78 74 72 61 20 6f  |----..An extra o|
00000050  70 74 69 6f 6e 20 28 27  49 27 29 20 68 61 73 20  |ption ('I') has |
00000060  62 65 65 6e 20 61 64 64  65 64 20 74 6f 20 74 68  |been added to th|
00000070  65 20 41 63 6f 72 6e 20  70 6f 72 74 3a 20 69 66  |e Acorn port: if|
00000080  20 69 74 20 69 73 20 73  70 65 63 69 66 69 65 64  | it is specified|
00000090  0a 7a 69 70 20 77 69 6c  6c 20 6e 6f 74 20 63 6f  |.zip will not co|
000000a0  6e 73 69 64 65 72 20 49  6d 61 67 65 20 66 69 6c  |nsider Image fil|
000000b0  65 73 20 28 65 67 2e 20  44 4f 53 20 70 61 72 74  |es (eg. DOS part|
000000c0  69 74 69 6f 6e 73 20 6f  72 20 53 70 61 72 6b 20  |itions or Spark |
000000d0  61 72 63 68 69 76 65 73  20 77 68 65 6e 0a 53 70  |archives when.Sp|
000000e0  61 72 6b 46 53 20 69 73  20 6c 6f 61 64 65 64 29  |arkFS is loaded)|
000000f0  20 61 73 20 64 69 72 65  63 74 6f 72 69 65 73 20  | as directories |
00000100  62 75 74 20 77 69 6c 6c  20 73 74 6f 72 65 20 74  |but will store t|
00000110  68 65 6d 20 61 73 20 73  69 6e 67 6c 65 20 66 69  |hem as single fi|
00000120  6c 65 73 2e 20 54 68 69  73 0a 6d 65 61 6e 73 20  |les. This.means |
00000130  74 68 61 74 20 69 66 20  79 6f 75 20 68 61 76 65  |that if you have|
00000140  2c 20 73 61 79 2c 20 53  70 61 72 6b 46 53 20 6c  |, say, SparkFS l|
00000150  6f 61 64 65 64 2c 20 7a  69 70 70 69 6e 67 20 61  |oaded, zipping a|
00000160  20 53 70 61 72 6b 20 61  72 63 68 69 76 65 20 77  | Spark archive w|
00000170  69 6c 6c 0a 72 65 73 75  6c 74 20 69 6e 20 61 20  |ill.result in a |
00000180  7a 69 70 66 69 6c 65 20  63 6f 6e 74 61 69 6e 69  |zipfile containi|
00000190  6e 67 20 61 20 64 69 72  65 63 74 6f 72 79 20 28  |ng a directory (|
000001a0  61 6e 64 20 69 74 73 20  63 6f 6e 74 65 6e 74 29  |and its content)|
000001b0  20 77 68 69 6c 65 20 75  73 69 6e 67 20 74 68 65  | while using the|
000001c0  0a 27 49 27 20 6f 70 74  69 6f 6e 20 77 69 6c 6c  |.'I' option will|
000001d0  20 72 65 73 75 6c 74 20  69 6e 20 61 20 7a 69 70  | result in a zip|
000001e0  66 69 6c 65 20 63 6f 6e  74 61 69 6e 69 6e 67 20  |file containing |
000001f0  61 20 53 70 61 72 6b 20  61 72 63 68 69 76 65 2e  |a Spark archive.|
00000200  20 4f 62 76 69 6f 75 73  6c 79 0a 74 68 69 73 20  | Obviously.this |
00000210  73 65 63 6f 6e 64 20 63  61 73 65 20 77 69 6c 6c  |second case will|
00000220  20 61 6c 73 6f 20 62 65  20 6f 62 74 61 69 6e 65  | also be obtaine|
00000230  64 20 28 77 69 74 68 6f  75 74 20 74 68 65 20 27  |d (without the '|
00000240  49 27 20 6f 70 74 69 6f  6e 29 20 69 66 20 53 70  |I' option) if Sp|
00000250  61 72 6b 46 53 0a 69 73  6e 27 74 20 6c 6f 61 64  |arkFS.isn't load|
00000260  65 64 2e 0a 0a 57 68 65  6e 20 61 64 64 69 6e 67  |ed...When adding|
00000270  20 66 69 6c 65 73 20 74  6f 20 61 20 7a 69 70 66  | files to a zipf|
00000280  69 6c 65 3b 20 74 6f 20  6d 61 69 6e 74 61 69 6e  |ile; to maintain|
00000290  20 46 69 6c 65 43 6f 72  65 20 63 6f 6d 70 6c 69  | FileCore compli|
000002a0  61 6e 63 65 2c 20 61 6c  6c 0a 66 69 6c 65 73 20  |ance, all.files |
000002b0  6e 61 6d 65 64 20 22 66  69 6c 65 2f 65 78 74 22  |named "file/ext"|
000002c0  20 77 69 6c 6c 20 62 65  20 61 64 64 65 64 20 74  | will be added t|
000002d0  6f 20 74 68 65 20 61 72  63 68 69 76 65 20 61 73  |o the archive as|
000002e0  20 22 66 69 6c 65 2e 65  78 74 22 2e 0a 54 68 69  | "file.ext"..Thi|
000002f0  73 20 70 72 65 73 65 6e  74 73 20 6e 6f 20 70 72  |s presents no pr|
00000300  6f 62 6c 65 6d 20 69 66  20 79 6f 75 20 77 69 73  |oblem if you wis|
00000310  68 20 74 6f 20 75 73 65  20 75 6e 7a 69 70 20 74  |h to use unzip t|
00000320  6f 20 65 78 74 72 61 63  74 20 74 68 65 6d 20 6f  |o extract them o|
00000330  6e 20 61 6e 79 0a 6f 74  68 65 72 20 6d 61 63 68  |n any.other mach|
00000340  69 6e 65 2c 20 61 73 20  74 68 65 20 66 69 6c 65  |ine, as the file|
00000350  73 20 61 72 65 20 63 6f  72 72 65 63 74 6c 79 20  |s are correctly |
00000360  6e 61 6d 65 64 2e 20 54  68 69 73 20 61 6c 73 6f  |named. This also|
00000370  20 70 72 65 73 65 6e 74  73 20 6e 6f 0a 70 72 6f  | presents no.pro|
00000380  62 6c 65 6d 20 69 66 20  79 6f 75 20 75 73 65 20  |blem if you use |
00000390  75 6e 7a 69 70 20 66 6f  72 20 52 49 53 43 20 4f  |unzip for RISC O|
000003a0  53 2c 20 61 73 20 74 68  65 20 66 69 6c 65 73 20  |S, as the files |
000003b0  61 72 65 20 63 6f 6e 76  65 72 74 65 64 20 62 61  |are converted ba|
000003c0  63 6b 20 74 6f 0a 22 66  69 6c 65 2f 65 78 74 22  |ck to."file/ext"|
000003d0  20 66 6f 72 6d 61 74 2e  20 54 68 65 20 6f 6e 6c  | format. The onl|
000003e0  79 20 70 72 6f 62 6c 65  6d 20 61 70 70 65 61 72  |y problem appear|
000003f0  73 20 77 68 65 6e 20 79  6f 75 20 75 73 65 20 53  |s when you use S|
00000400  70 61 72 6b 46 53 20 74  6f 0a 64 65 63 6f 6d 70  |parkFS to.decomp|
00000410  72 65 73 73 20 74 68 65  20 66 69 6c 65 73 2c 20  |ress the files, |
00000420  61 73 20 61 20 66 69 6c  65 20 63 61 6c 6c 65 64  |as a file called|
00000430  20 22 66 69 6c 65 2e 65  78 74 22 20 77 69 6c 6c  | "file.ext" will|
00000440  20 62 65 20 65 78 74 72  61 63 74 65 64 20 61 73  | be extracted as|
00000450  0a 22 66 69 6c 65 5f 65  78 74 22 2c 20 6e 6f 74  |."file_ext", not|
00000460  20 77 68 61 74 20 69 74  20 77 61 73 20 61 64 64  | what it was add|
00000470  65 64 20 61 73 2e 20 59  6f 75 20 6d 75 73 74 20  |ed as. You must |
00000480  62 65 20 63 61 72 65 66  75 6c 20 61 62 6f 75 74  |be careful about|
00000490  20 74 68 69 73 2e 0a 0a  43 61 73 65 20 53 70 65  | this...Case Spe|
000004a0  63 69 66 69 63 2e 20 44  65 70 65 6e 64 69 6e 67  |cific. Depending|
000004b0  20 6f 6e 20 68 6f 77 20  79 6f 75 20 74 79 70 65  | on how you type|
000004c0  20 74 68 65 20 63 6f 6d  6d 61 6e 64 2c 20 66 69  | the command, fi|
000004d0  6c 65 73 20 77 69 6c 6c  20 62 65 20 61 64 64 65  |les will be adde|
000004e0  64 0a 65 78 61 63 74 6c  79 20 61 73 20 6e 61 6d  |d.exactly as nam|
000004f0  65 64 3b 20 69 6e 20 74  68 69 73 20 65 78 61 6d  |ed; in this exam|
00000500  70 6c 65 3a 0a 2a 7a 69  70 20 6e 65 77 2f 7a 69  |ple:.*zip new/zi|
00000510  70 20 6e 65 77 66 69 6c  65 0a 2a 7a 69 70 20 6e  |p newfile.*zip n|
00000520  65 77 2f 7a 69 70 20 4e  65 77 46 69 6c 65 0a 2a  |ew/zip NewFile.*|
00000530  7a 69 70 20 6e 65 77 2f  7a 69 70 20 4e 45 57 46  |zip new/zip NEWF|
00000540  49 4c 45 0a 77 69 6c 6c  20 63 72 65 61 74 65 20  |ILE.will create |
00000550  61 6e 20 61 72 63 68 69  76 65 20 63 6f 6e 74 61  |an archive conta|
00000560  69 6e 69 6e 67 20 33 20  63 6f 70 69 65 73 20 6f  |ining 3 copies o|
00000570  66 20 74 68 65 20 73 61  6d 65 20 52 69 73 63 20  |f the same Risc |
00000580  4f 53 20 66 69 6c 65 20  27 6e 65 77 66 69 6c 65  |OS file 'newfile|
00000590  27 0a 63 61 6c 6c 65 64  20 27 6e 65 77 66 69 6c  |'.called 'newfil|
000005a0  65 27 2c 20 27 4e 65 77  46 69 6c 65 27 20 61 6e  |e', 'NewFile' an|
000005b0  64 20 27 4e 45 57 46 49  4c 45 27 2e 20 50 6c 65  |d 'NEWFILE'. Ple|
000005c0  61 73 65 20 62 65 20 63  61 72 65 66 75 6c 2e 0a  |ase be careful..|
000005d0  0a 54 68 65 20 41 63 6f  72 6e 20 70 6f 72 74 20  |.The Acorn port |
000005e0  63 6f 6e 73 65 72 76 65  73 20 66 69 6c 65 20 61  |conserves file a|
000005f0  74 74 72 69 62 75 74 65  73 2c 20 69 6e 63 6c 75  |ttributes, inclu|
00000600  64 69 6e 67 20 66 69 6c  65 74 79 70 65 2c 20 73  |ding filetype, s|
00000610  6f 20 69 66 20 79 6f 75  0a 7a 69 70 20 6f 6e 20  |o if you.zip on |
00000620  61 6e 20 41 63 6f 72 6e  2c 20 61 6e 64 20 75 6e  |an Acorn, and un|
00000630  7a 69 70 20 6f 6e 20 61  6e 6f 74 68 65 72 20 41  |zip on another A|
00000640  63 6f 72 6e 2c 20 66 69  6c 65 74 79 70 65 73 20  |corn, filetypes |
00000650  77 69 6c 6c 20 62 65 20  6d 61 69 6e 74 61 69 6e  |will be maintain|
00000660  65 64 0a 70 72 65 63 69  73 65 6c 79 20 61 73 20  |ed.precisely as |
00000670  69 66 20 79 6f 75 20 75  73 65 64 20 75 6e 63 6f  |if you used unco|
00000680  6d 70 72 65 73 73 65 64  20 66 69 6c 65 73 2e 20  |mpressed files. |
00000690  49 66 20 79 6f 75 20 64  65 2d 61 72 63 68 69 76  |If you de-archiv|
000006a0  65 20 6f 6e 20 61 6e 6f  74 68 65 72 0a 6d 61 63  |e on another.mac|
000006b0  68 69 6e 65 20 28 50 43  2c 20 4d 61 63 2c 20 55  |hine (PC, Mac, U|
000006c0  6e 69 78 20 65 74 63 2e  2e 29 2c 20 66 69 6c 65  |nix etc..), file|
000006d0  74 79 70 65 73 20 77 69  6c 6c 20 62 65 20 69 67  |types will be ig|
000006e0  6e 6f 72 65 64 2c 20 62  75 74 20 74 68 65 20 66  |nored, but the f|
000006f0  69 6c 65 73 0a 77 69 6c  6c 20 62 65 20 69 64 65  |iles.will be ide|
00000700  6e 74 69 63 61 6c 20 64  65 73 70 69 74 65 20 74  |ntical despite t|
00000710  68 69 73 2e 20 54 68 69  73 20 66 65 61 74 75 72  |his. This featur|
00000720  65 20 69 73 20 66 75 6c  6c 79 20 63 6f 6d 70 61  |e is fully compa|
00000730  74 69 62 6c 65 20 77 69  74 68 0a 53 70 61 72 6b  |tible with.Spark|
00000740  46 53 2c 20 73 6f 20 7a  69 70 66 69 6c 65 73 20  |FS, so zipfiles |
00000750  63 72 65 61 74 65 64 20  62 79 20 7a 69 70 20 77  |created by zip w|
00000760  69 6c 6c 20 62 65 20 63  6f 72 72 65 63 74 6c 79  |ill be correctly|
00000770  20 75 6e 63 6f 6d 70 72  65 73 73 65 64 20 28 69  | uncompressed (i|
00000780  6e 63 6c 75 64 69 6e 67  0a 66 69 6c 65 74 79 70  |ncluding.filetyp|
00000790  65 2c 20 65 74 63 2e 29  20 62 79 20 53 70 61 72  |e, etc.) by Spar|
000007a0  6b 46 53 2e 0a 0a 41 6e  20 61 64 64 69 74 69 6f  |kFS...An additio|
000007b0  6e 61 6c 20 66 65 61 74  75 72 65 20 77 65 6e 74  |nal feature went|
000007c0  20 69 6e 74 6f 20 74 68  69 73 20 70 6f 72 74 20  | into this port |
000007d0  74 6f 20 63 6f 70 65 20  62 65 74 74 65 72 20 77  |to cope better w|
000007e0  69 74 68 20 43 2d 63 6f  64 65 0a 61 6e 64 20 65  |ith C-code.and e|
000007f0  78 74 65 6e 73 69 6f 6e  73 2e 20 54 68 69 73 20  |xtensions. This |
00000800  61 6c 6c 6f 77 73 20 74  68 65 20 61 63 6f 72 6e  |allows the acorn|
00000810  20 66 69 6c 65 73 20 22  63 2e 66 6f 6f 22 20 74  | files "c.foo" t|
00000820  6f 20 62 65 20 61 64 64  65 64 20 74 6f 20 74 68  |o be added to th|
00000830  65 0a 61 72 63 68 69 76  65 20 61 73 20 22 66 6f  |e.archive as "fo|
00000840  6f 2f 63 22 2c 20 65 76  65 6e 74 75 61 6c 6c 79  |o/c", eventually|
00000850  20 61 70 70 65 61 72 69  6e 67 20 69 6e 20 74 68  | appearing in th|
00000860  65 20 61 72 63 68 69 76  65 20 61 73 20 22 66 6f  |e archive as "fo|
00000870  6f 2e 63 22 2c 20 61 6c  6c 6f 77 69 6e 67 0a 66  |o.c", allowing.f|
00000880  6f 72 20 62 65 74 74 65  72 20 68 61 6e 64 6c 69  |or better handli|
00000890  6e 67 20 6f 66 20 43 20  6f 72 20 43 2b 2b 20 63  |ng of C or C++ c|
000008a0  6f 64 65 2e 20 45 78 61  6d 70 6c 65 3a 0a 2a 53  |ode. Example:.*S|
000008b0  65 74 20 5a 69 70 24 45  78 74 73 20 22 64 69 72  |et Zip$Exts "dir|
000008c0  31 3a 64 69 72 32 3a 64  69 72 33 22 0a 2a 7a 69  |1:dir2:dir3".*zi|
000008d0  70 20 6e 65 77 2f 7a 69  70 20 64 69 72 31 2e 66  |p new/zip dir1.f|
000008e0  69 6c 65 0a 2a 7a 69 70  20 6e 65 77 2f 7a 69 70  |ile.*zip new/zip|
000008f0  20 64 69 72 32 2e 68 65  6c 70 0a 2a 7a 69 70 20  | dir2.help.*zip |
00000900  6e 65 77 2f 7a 69 70 20  64 69 72 33 2e 74 65 78  |new/zip dir3.tex|
00000910  74 66 69 6c 65 0a 43 72  65 61 74 65 73 20 61 20  |tfile.Creates a |
00000920  7a 69 70 66 69 6c 65 20  6e 65 77 2f 7a 69 70 2c  |zipfile new/zip,|
00000930  20 77 69 74 68 20 65 6e  74 72 69 65 73 20 66 69  | with entries fi|
00000940  6c 65 2e 64 69 72 31 2c  20 68 65 6c 70 2e 64 69  |le.dir1, help.di|
00000950  72 32 2c 20 74 65 78 74  66 69 6c 65 2e 64 69 72  |r2, textfile.dir|
00000960  33 2e 0a 54 68 65 20 75  73 75 61 6c 20 73 65 74  |3..The usual set|
00000970  74 69 6e 67 73 20 66 6f  72 20 5a 69 70 24 45 78  |tings for Zip$Ex|
00000980  74 73 20 61 72 65 20 22  68 3a 6f 3a 73 3a 63 22  |ts are "h:o:s:c"|
00000990  2c 20 61 6c 6c 6f 77 69  6e 67 20 43 20 63 6f 64  |, allowing C cod|
000009a0  65 20 74 6f 20 62 65 20  61 64 64 65 64 0a 74 6f  |e to be added.to|
000009b0  20 74 68 65 20 61 72 63  68 69 76 65 20 69 6e 20  | the archive in |
000009c0  73 74 61 6e 64 61 72 64  20 66 6f 72 6d 2e 0a 0a  |standard form...|
000009d0  41 20 66 69 6e 61 6c 20  6e 6f 74 65 20 61 62 6f  |A final note abo|
000009e0  75 74 20 74 68 65 20 41  63 6f 72 6e 20 70 6f 72  |ut the Acorn por|
000009f0  74 20 72 65 67 61 72 64  73 20 74 68 65 20 75 73  |t regards the us|
00000a00  65 20 6f 66 20 74 68 65  20 27 6e 27 20 6f 70 74  |e of the 'n' opt|
00000a10  69 6f 6e 3a 20 74 68 69  73 20 69 73 0a 75 73 65  |ion: this is.use|
00000a20  64 20 74 6f 20 73 70 65  63 69 66 79 20 61 20 6c  |d to specify a l|
00000a30  69 73 74 20 6f 66 20 73  75 66 66 69 78 65 73 20  |ist of suffixes |
00000a40  74 68 61 74 20 77 69 6c  6c 20 6e 6f 74 20 62 65  |that will not be|
00000a50  20 63 6f 6d 70 72 65 73  73 65 64 20 28 65 67 2e  | compressed (eg.|
00000a60  20 2e 5a 49 50 2c 0a 73  69 6e 63 65 20 69 74 20  | .ZIP,.since it |
00000a70  69 73 20 61 6c 72 65 61  64 79 20 61 20 63 6f 6d  |is already a com|
00000a80  70 72 65 73 73 65 64 20  66 69 6c 65 29 2e 20 53  |pressed file). S|
00000a90  69 6e 63 65 20 52 49 53  43 20 4f 53 20 75 73 65  |ince RISC OS use|
00000aa0  73 20 66 69 6c 65 74 79  70 65 73 20 69 6e 73 74  |s filetypes inst|
00000ab0  65 61 64 0a 6f 66 20 73  75 66 66 69 78 65 73 2c  |ead.of suffixes,|
00000ac0  20 74 68 69 73 20 6c 69  73 74 20 6f 66 20 73 75  | this list of su|
00000ad0  66 66 69 78 65 73 20 69  73 20 61 63 74 75 61 6c  |ffixes is actual|
00000ae0  6c 79 20 63 6f 6e 73 69  64 65 72 65 64 20 61 73  |ly considered as|
00000af0  20 61 20 6c 69 73 74 20  6f 66 0a 66 69 6c 65 74  | a list of.filet|
00000b00  79 70 65 73 20 28 33 20  68 65 78 20 64 69 67 69  |ypes (3 hex digi|
00000b10  74 20 66 6f 72 6d 61 74  29 2e 20 42 79 20 64 65  |t format). By de|
00000b20  66 61 75 6c 74 2c 20 7a  69 70 20 64 6f 65 73 6e  |fault, zip doesn|
00000b30  27 74 20 63 6f 6d 70 72  65 73 73 20 66 69 6c 65  |'t compress file|
00000b40  74 79 70 65 73 0a 44 44  43 20 28 41 72 63 68 69  |types.DDC (Archi|
00000b50  76 65 2c 20 53 70 61 72  6b 20 6f 72 20 5a 69 70  |ve, Spark or Zip|
00000b60  29 2c 20 44 39 36 20 28  43 46 53 20 66 69 6c 65  |), D96 (CFS file|
00000b70  73 29 20 61 6e 64 20 36  38 45 20 28 50 61 63 6b  |s) and 68E (Pack|
00000b80  44 69 72 29 2e 0a 0a                              |Dir)...|
00000b87