Unzip Folder
From UBot Studio
(Difference between revisions)
(Created page with " This function is a Compression function in the UBot Extended Library. This function unzips a file to a folder. '''File to Unzip:''' The .zip file being unzipped, complet...") |
|||
Line 2: | Line 2: | ||
This function is a [[Compression]] function in the UBot Extended Library. This function unzips a file to a folder. | This function is a [[Compression]] function in the UBot Extended Library. This function unzips a file to a folder. | ||
− | '''File to Unzip:''' The .zip file being unzipped, complete with the folder path. | + | '''File to Unzip:''' The .zip file being unzipped, complete with the folder path.(C:\Users\Downloads\Stuff.zip) |
− | '''Folder:''' The name of the resulting unzipped folder. Please be sure to include the entire file path and the .zip extension on the file name. | + | '''Folder:''' The name of the resulting unzipped folder. Please be sure to include the entire file path and the .zip extension on the file name. (C:\Users\Downloads\UnzippedStuff) |
== Example == | == Example == |
Revision as of 18:50, 24 June 2015
This function is a Compression function in the UBot Extended Library. This function unzips a file to a folder.
File to Unzip: The .zip file being unzipped, complete with the folder path.(C:\Users\Downloads\Stuff.zip)
Folder: The name of the resulting unzipped folder. Please be sure to include the entire file path and the .zip extension on the file name. (C:\Users\Downloads\UnzippedStuff)
Example
unzip file("C:\\Users\\Downloads\\Stuff.zip","C:\\Users\\Downloads\\UnzippedStuff")
The specified .zip file is unzipped and placed in the appropriate location.