create_directory

Create a directory

Arguments

NameTypeDescriptionRequired

full_directory_path

string

The path to the directory that needs to be created. The path should be relative to the project root.

Returns

TypeDescription

string

The path to the newly created directory. Does not have a trailing slash.

Example

- name: create_directory
  arguments:
    full_directory_path: /some/path/to/directory
  returns: /some/path/to/directory

Last updated