File operations
Check if file exists
Checks if a remote file exists.
Parameters
Parameter | Description |
Remote path | Path to check. |
Output
Simple value,'True' if file exists. 'False' otherwise.
Since
6.3
Copy remote file
Copies a remote file into the selected destination.
Parameters
Parameter | Description |
Remote source path | Path where to copy from. |
Remote destination path | Path where to copy to. |
Overwrite if already exists | True or false. |
Output
No output.
Since
6.3
Delete file
Delete a remote file.
Parameters
Parameter | Description |
Remote path | Path to file to delete. |
Output
No output.
Since
6.3
Delete files
Delete multiple remote files based on mask.
Parameters
Parameter | Description |
Remote path | Path where to delete files. |
Mask | Mask used to filter which files to download. Example "*.txt". Regular expressions can also be used by prefixing with "regex:", example "regex:[A|B].*" to list all files starting with "A" or "B". |
Case sensitive | Specifies if mask is case sensitive (not applicable if regex is used). |
Recursive | Specifies whether to delete files recursivly. |
Output
No output.
Since
6.3
Get size of file
Gets the size, in bytes, of remote file.
Parameters
Parameter | Description |
Remote path | File of interest. |
Output
Simple value, numeric.
Since
6.3
Rename file
Renames a remote file.
Parameters
Parameter | Description |
Old path | Current name of file. |
New path | New name of file. |
Output
No output.
Since
6.3
Last updated