• 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
Returns a boolean value (True or False) indicating if a file exists in the specified location.
// Specify the path to the file. var filepath = info.sourceFile.parentNativePath + "/../"; // Specify the filename. var filename = "License.txt"; // If the file doesn't exist... if( ! fileExists( filepath + filename ) ) { writeln( "ERROR: The file (" + ( filepath + filename ) + ") does not exist." ); quit; }
© Copyright 2025 Tim Dietrich. | Legal Info