ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Archive functions
  • Number of parts in an archive
zipNbPart (Example)
Number of parts in an archive
WINDEV The following code is used to find out the number of parts found in an archive.
// Declare and initialize the variables
ResArchiveCreation is int
NumberParts is int
 
// Create an archive
ResArchiveCreation = zipCreate("MyArchive", "C:\MyArchives\Archive.zip")
...
// Number of parts found in this archive
NumberParts = zipNbPart("MyArchive")
Info("This archive contains" + NumberParts + "part(s)")
...
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help