The Create Directory Component allows users to create a directory on an FTP server, ensuring that the specified path exists by creating any missing subdirectories.
This component connects to an FTP server and creates a directory at the specified path, making it useful for workflows that require structured file storage.
in
Receives the directory path to create.
out
Confirms successful directory creation.
path
string
The directory path to create. Missing parent directories will also be created if they do not exist.
Establishes FTP Connection: Connects to the FTP server using provided credentials.
Creates Directory:
Checks if the specified path exists.
If not, creates the directory and any required parent directories.
Confirms Completion: Returns a confirmation response upon successful directory creation.
status
string
Confirms successful directory creation.
Recursive Directory Creation: Ensures all missing parent directories are created.
Secure FTP Connection: Uses authentication details to establish a secure connection.
Ideal for Automated File Management: Supports structured directory creation within FTP workflows.
This component is essential for workflows that require automated directory management on an FTP server.