-
Notifications
You must be signed in to change notification settings - Fork 8
Zip
lainz edited this page Jul 23, 2016
·
4 revisions
#Zip.Add Compress a list of files into a Zip file.
Parameters: OutFilename, Files
Zip.Add("C:\\temp\\file.zip", {"C:\\temp\\file1.txt", "C:\\temp\\file2.txt"})
#Zip.Extract Extract a list of files from a Zip file.
Parameters: Filename, Files, OutFolder
Zip.Extract("C:\\temp\\file.zip", {"file1.txt", "file2.txt"}, "C:\\temp")
#Zip.GetContents Returns the list of files within a given Zip file.
Parameters: Filename, IncludeFolderNames
result_table = Zip.GetContents("C:\\temp\\file.zip", true)