ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Archive functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Returns the size of archive (in ZIP, RAR, CAB, WDZ, 7z, TAR or TGZ (TAR.GZ) format):
  • the size of all compressed files found in the archive.
  • the size of all files found in the archive before compression.
When extracting files from an archive, we recommend that you calculate the size of all the files before compression in order to check that you have enough disk space.
Reminder:
    Reports and Queries
    MyArchive is zipArchive
     
    // Open an archive
    ResOpenArchive = zipOpen(MyArchive, "C:\MyArchives\Archive.zip")
     
    // Size of opened archive
    IF ResOpenArchive = 0 THEN
    ResArchiveSize = zipSize(MyArchive)
    ...
    END
    Syntax
    <Result> = zipSize(<Archive> [, <Type of size>])
    <Result>: Integer
    Size of archive.
    <Archive>: Character string or zipArchive variable
    Name of the archive to be used.
    This name can correspond to:
    <Type of size>: Optional boolean
    Type of calculation performed to get the size of the archive:
    • True: Size of all the compressed files found in the archive.
    • False (default value): Size of all the files found in the archive before compression.
    Business / UI classification: Business Logic
    Component: wd290zip.dll
    Minimum version required
    • Version 9
    This page is also available for…
    Comments
    Click [Add] to post a comment

    Last update: 06/12/2023

    Send a report | Local help