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.0

Create directory

Creates all the directories at specified path.

Parameters

Output

Simple value containing the path to the newly created directory.

Since

6.0

Delete directory

Deletes directory at provided path. Directory must be empty unless 'Also delete all subdirectories (and files)' is true.

Parameters

Output

Simple value,'True' if directory was successfully deleted. 'False' otherwise.

Since

6.0

Delete files in directory

Deletes all files in directory matching specified pattern.

Parameters

Output

Simple value, number of files deleted.

Since

6.3

Get all subdirectories of directory (full path)

Gets the full path of all subdirectories of given directory.

Parameters

Output

Table with column 'value' where each row is a full path to directory in given directory.

Since

6.0

Get directory modification times

Gets a record containing directory modification times.

Parameters

Output

Record with members 'CreationTime', 'LastWriteTime' and 'LastAccessTime'.

Since

6.0

Get files in directory (full path)

Gets the full path of all files in given directory.

Parameters

Output

Table with column 'value' where each row is a full path to file in given directory.

Since

6.0

Get name of all subdirectories of directory

Gets the names of all directories in given directory.

Parameters

Output

Table with column 'value' where each row is the name of a directory in given directory.

Since

6.0

Get name of files in directory

Gets the names (including extension) of all files in given directory.

Parameters

Output

Table with column 'value' where each row is the name of a file in given directory.

Since

6.0

Move directory

Moves a directory to a new location.

Parameters

Output

Simple value, 'True' if directory was successfully moved. 'False' otherwise.

Since

6.0

Last updated