AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de archivos
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 <zipArchive variable>.Open or if it was created by <zipArchive variable>.Create.
Example
WINDEVWEBDEV - Server codeReports and QueriesUser code (UMC)Ajax
MyArchive is zipArchive
// Create the archive
ResCreate = MyArchive.Create("C:\Temp\Archive.zip")
...
// Check the archive existence
IF MyArchinve.Exist() = True THEN
// Add a file into an archive
ResAddFile = MyArchive.AddFile(...
"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> = <Archive>.Exist()
<Result>: Boolean
  • True if the archive exists,
  • False otherwise.
<Archive>: zipArchive variable
Name of a variable of type zipArchive corresponding to the archive to use.
Business / UI classification: Business Logic
Component: wd290zip.dll
Versión mínima requerida
  • Versión 28
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 21/06/2023

Señalar un error o enviar una sugerencia | Ayuda local