|
V32ZipInfo()
|
| Extracts the
information from an archive previously created through V32ZipFiles()
function. |
|
Syntax
|
| V32ZipInfo(
<cFile> ) |
|
Arguments
|
| cFile |
A fully qualified
file name with drive, path and extension information. If <cFile>
will not be present as checked through file( cFile ) function or it
is not a valid archive or no files are found in the archive, it will
return empty array. If successful it will return two-dimentional array (
see below ). |
|
Returns
|
A two-dimentional
array with following structure
{ { cName, nUnCBytes, nCBytes, nPer, dDate, cTime}}
| File Name |
Uncompressed Bytes |
Compressed Bytes |
Percentage of Compression |
Date Stamp |
Time Stamp |
|
|
Description
|
| Th function is
useful when there is a need to know which files are contained in which
archive just to take the right decision. |
|
Usage
|
local
cFile := 'c:\application\backup\backup1.zip'
local aInfo_:={}
aInfo_:= V32ZipInfo( cFile )
// Routine to view aInfo_ in a browser.
|
|
Tips
|
| This funtion is
very useful under circumstances where we need to know the in advance the
information about a file and need to comapre the same within different
archieves. |