mqscript_file_exists
Check if a file exists at a specified path to verify file availability before performing mobile automation operations.
Instructions
Check if file exists
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | File path to check | |
resultVariable | No | Variable name to store result | fileExists |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"description": "File path to check",
"type": "string"
},
"resultVariable": {
"default": "fileExists",
"description": "Variable name to store result",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}