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...") |
|||
(One intermediate revision by one user not shown) | |||
Line 1: | Line 1: | ||
− | This function is a [[Compression]] | + | This function is a [[Compression]] command 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 == |
Latest revision as of 23:16, 24 June 2015
This function is a Compression command 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)
[edit] 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.