ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Archive functions
  • Reminder
  • Error while adding or extracting files
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 name of the archived file currently handled by the functions for adding and extracting files. This function can be used on the following types of archives: CAB, RAR, WDZ, ZIP, TAR and TGZ (TAR.GZ).
Example
Reports and Queries
Archive is zipArchive
 
FOR Index = 1 TO 5
// Extract the first 5 files from the archive
ResExtractFile = Archive.ExtractFile(Subscript)
...
// Find the name of the file currently extracted
ResCurrentFile = Archive.CurrentFile()
// Display the name of the file in the status bar
Message(ResCurrentFile)
...
END
Syntax
<Result> = <Archive>.CurrentFile()
<Result>: Character string
File currently handled by <zipArchive variable>.AddFile, <zipArchive variable>.AddDirectory, <zipArchive variable>.ExtractFile or <zipArchive variable>.ExtractAll.
<Archive>: zipArchive variable
Name of a variable of type zipArchive corresponding to the archive to use.
Remarks

Reminder

    Error while adding or extracting files

    If an error occurs during the addition or extraction processes, <zipArchive variable>.CurrentFile contains the name of the file that was not read or written in the archive.
    Component: wd290zip.dll
    Minimum version required
    • Version 24
    This page is also available for…
    Comments
    Click [Add] to post a comment

    Last update: 06/21/2023

    Send a report | Local help