UnZipFiles(FileName: String, FolderName: String)
Extract contents from a zip file to a given folder. If the folder does not exist, it will be created,
UnZipFiles function syntax has these named arguments:
Parameter |
Description |
File Name |
Required. The zip or 7z file name. If file extension is 7z then 7 zip is used for extraction. |
Folder Name |
Required. The folder to extract files into. |
For example:
Unzipfiles("c:\test.zip", "c:\Exports")
extracts the contents of c:\Test.zip into c:\Exports.