• Downloading & Installing
• Running
• Examples
Cryptography
• hashSHA256
• hmacSHA256
• hashSHA512
• hmacSHA512
• hashMD5
• hmacMD5
File System
• fileExists
• fileRead
• fileWrite
• folderExists
• unzip
• zip
Networking
• curlExecute
• nsapiExecute
Operating System
• shellExecute
Text Encoding
• base64Decode
• base64Encode
Utilities
• abort / halt / quit
• info
• infoRefresh
• sleep
• stringIndent
• uuidGenerate
Decompresses the specified file to the specified destination.
Supports one optional parameter:
• password. The password to use when unzipping the file.
var sourcePath = info.sourceFile.parentNativePath + "/../examples.zip"; var destinationPath = info.sourceFile.parentNativePath + "/../Examples Unzipped/"; unzip( sourcePath, destinationPath, "secret" ); if ( info.error.number != null ) { writeln( "ERROR: Unable to unzip the file." ); writeln( "• Error Number: " + info.error.number ); writeln( "• Error Message: " + info.error.message ); writeln; quit; } writeln( "The zip file's contents were unzipped here:" ); writeln( destinationPath );
© Copyright 2025 Tim Dietrich. | Legal Info