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
Determines whether an archive exists. An archive exists if it was opened by zipOpen or if it was created by zipCreate.
Example
WINDEVUser code (UMC)
MyArchive is zipArchive
// Create the archive
ResCreate = zipCreate(MyArchive, "C:\Temp\Archive.zip")
...
// Check the archive existence
IF zipExist(MyArchive) = True THEN
// Add a file into an archive
ResAddFile = zipAddFile(MyArchive, ...
"C:\MyDirectory\MyFiles\File.pdf", zipDrive)
// Display an error message if the file was not added
IF ResAddFile <> 0 THEN
Error(zipMsgError(ResAddFile))
END
END
Syntax
<Result> = zipExist(<Archive>)
<Result>: Boolean
  • True if the archive exists,
  • False otherwise.
<Archive>: Character string or zipArchive variable
Name of the archive to be used.
This name can correspond to:
Business / UI classification: Business Logic
Component: wd290zip.dll
Minimum version required
  • Version 14
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/12/2023

Send a report | Local help