Directory operations

Check if directory exists

Determains whether directory at specified path exists.

Parameters

Output

Simple value,'True' if directory exists. 'False' otherwise.

Since

6.3

Create directory

Creates a directory at the SFTP server. It is not possible to create several levels of directories in one step. If you want to create the directory "./dirA/dirB", the directory "./dirA" must exist. Otherwise you have to do it in two steps; first creates directory "./dirA" and the second one created "./dirA/dirB".

Parameters

Output

No output.

Since

6.3

Delete directory

Deletes specified directory. Note that the directory must be empty unless Recursive is set to true.

Parameters

Output

No output.

Since

6.3

List directory

Lists all files and directories in a specified path.

Parameters

Output

A table consisting of records with the following structure:

Since

6.3

Last updated