Extract File From Zip
From UBot Studio
(Difference between revisions)
(Created page with " This function is a Compression function in the UBot Extended Library. This function extracts a file from a zip. '''Zip File:''' The .zip file where the file will be extr...") |
|||
Line 2: | Line 2: | ||
This function is a [[Compression]] function in the UBot Extended Library. This function extracts a file from a zip. | This function is a [[Compression]] function in the UBot Extended Library. This function extracts a file from a zip. | ||
− | '''Zip File:''' The .zip file where the file will be extracted from. (C: | + | '''Zip File:''' The .zip file where the file will be extracted from. (C:\Users\Downloads\Stuff.zip) |
'''File Name:''' The name of the file being extracted. (Capture.jpg) | '''File Name:''' The name of the file being extracted. (Capture.jpg) | ||
− | '''Folder Extract to:''' The folder where the file being extracted will be extracted to. (C: | + | '''Folder Extract to:''' The folder where the file being extracted will be extracted to. (C:\Users\Downloads) |
== Example == | == Example == |
Revision as of 18:49, 24 June 2015
This function is a Compression function in the UBot Extended Library. This function extracts a file from a zip.
Zip File: The .zip file where the file will be extracted from. (C:\Users\Downloads\Stuff.zip)
File Name: The name of the file being extracted. (Capture.jpg)
Folder Extract to: The folder where the file being extracted will be extracted to. (C:\Users\Downloads)
Example
extract file from zip("C:\\Users\\Downloads\\Stuff.zip","Capture.jpg","C:\\Users\\Downloads")
The file "Capture.jpg" is extracted from the zipped file "Stuff.zip", and place in the downloads folder as specified.