Suite.js Documentation

Introduction


Getting Started

• Downloading & Installing
• Running
Examples


Technical Support


Functions

Cryptography
• hashSHA256
• hmacSHA256
• hashSHA512
• hmacSHA512
• hashMD5
• hmacMD5

File System
fileExists
fileRead
fileWrite
folderExists
unzip
zip

Input / Output
beep
prompt
write
writeln

Networking
curlExecute
• nsapiExecute

Operating System
shellExecute

Text Encoding
base64Decode
base64Encode


Advanced Topics

unzip

Decompresses the specified file to the specified destination.

Supports one optional parameter:
password. The password to use when unzipping the file.

unzip Example

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