Hello,
I have not found the last list of HB_ZIP functions.
The last than i have found, in this forum, is one provided by Enrico in 2005.
Is there a new list now ?
Regards,
http://www.icim.fr
Hello,
I have not found the last list of HB_ZIP functions.
The last than i have found, in this forum, is one provided by Enrico in 2005.
Is there a new list now ?
Regards,
I need particulary a function to retrieve these values registered
for each file in the .zip file :
Date and time of the file archived inside the .zip file.
Is it possible to retrieve these values ?
Regards,
Badara Thiam wrote:Hello,
I have not found the last list of HB_ZIP functions.
The last than i have found, in this forum, is one provided by Enrico in 2005.
Is there a new list now ?
Badara Thiam wrote:I need particulary a function to retrieve these values registered
for each file in the .zip file :
Date and time of the file archived inside the .zip file.
Is it possible to retrieve these values ?
I have found between time in C source.
Here is the solution :
local FICZIP := "c:\MonFichier.Zip"
aFilesInZip := hb_GetFilesInZip( FICZIP, .T.)
aFilesInZip is here an array. Each element is also
an array, where you can found :
1 - Nom et extension du fichier
2 - Longueur (taille décompressé)
3 - Méthode (Stored, Deflatx, etc...)
4 - Taille du fichier dans l'archive (compressé)
5 - Pourcentage de compression
6 - Date (format Date JJ/MM/AAAA)
7 - Heure (Format 99:99:99)
8 - CRC-32
9 - Attribut(s)
Salut,
Is'nt it ?