Libraries
Archive Source Code
 previous   up   next 

Function Summary
fileSys
openArchive (inout file: archiveFile)
Open an archive for reading with the given archiveFile.
fileSys
openArchive (in string: archiveFileName)
Open an archive for reading with the given archiveFileName.
fileSys
openArchiveByExtension (in string: archiveFileName)
Open an archive for writing according to the file name extension.

Function Detail

openArchive

const func fileSys: openArchive (inout file: archiveFile)

Open an archive for reading with the given archiveFile. Depending on the magic number in the file the corresponding archive is opened. If necessary a file decompression is used as well.

Parameters:
archiveFile - File that contains an archive.

openArchive

const func fileSys: openArchive (in string: archiveFileName)

Open an archive for reading with the given archiveFileName. Depending on the magic number in the file the corresponding archive is opened. If necessary a file decompression is used as well.

Parameters:
archiveFileName - Name of the archive to be opened.

openArchiveByExtension

const func fileSys: openArchiveByExtension (in string: archiveFileName)

Open an archive for writing according to the file name extension. An archive which uses this file name extension is opened.

Parameters:
archiveFileName - Name of the archive to be opened.


 previous   up   next