|
|
|
|
|
WLanguage procedure called by zipExtractDirectory to manage progress bars WLanguage procedure ("Callback") used by zipExtractDirectory to manage the progress of files being extracted from the archive. Archive is zipArchive
IF zipOpen(Archive, "C:\Archives\Archive.zip") = 0 THEN
zipExtractDirectory(Archive, "Temp", zipDrive, zipOverwrite, ...
zipExtraitRépertoire_Callback, zipExtraitRépertoire_CallbackJauge)
END
INTERNAL PROCEDURE zipExtraitRépertoire_CallbackJauge(FichierEnCours is string,
AvancementGlobal is int, AvancementFichier is int)
IF AvancementGlobal < 100 THEN
ProgressBar(AvancementGlobal, 100, FichierEnCours)
ELSE
ProgressBar()
END
END
Syntax
zipExtractDirectory_CallbackProgressBar(<Current file> , <Overall progress percentage> , <File progress percentage>)
<Current file>: Character string Name of the file being processed. <Overall progress percentage>: Integer Progress percentage of the extraction of files from the archive. <File progress percentage>: Integer Progress percentage of the extraction of the current file from the archive. Remarks If you are using a 7z archive, only <Overall progress percentage> is specified. <File progress percentage> will have the same value.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|