ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Archive functions
  • Creating an archive
zipCreate (Example)
Creating an archive
WINDEVWEBDEV - Server codeAjax
The following code is used to create an archive. The name of the archive is entered in an edit control: EDT_ArchiveName. The directory path is selected with fSelectDir.
// Declare and initialize the variables
ArchiveName is string
ArchivePath is string
ResArchiveCreation is int
 
// Select the name of the archive. EDT_ArchiveName is edit control
ArchiveName = EDT_ArchiveName
 
// Select the path of the archive
ArchivePath = fSelectDir("", "", "Selecting the directory")
 
// Create the "ArchiveName" archive
ResCreateArchive = zipCreate(ArchiveName, ...
CompleteDir(ArchivePath) + ArchiveName)
 
// Display an error message if the creation was not performed
IF ResArchiveCreation <> 0 THEN
Error(zipMsgError(ResArchiveCreation))
END
Minimum version required
  • Version 9
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help