Essential filesystem management capabilities for workflows,
Parameter | Description |
---|---|
File identifier | The identifier of the file. This can be used as input for subsequent Steps. |
Content Path | The file or folder path to create the archive from. |
Destination | The path in which the archive will be created. If no destination is provided, the archive will be created in the user’s home path. |
Advanced- Working Directory | When a working directory is selected, the filesystem state is preserved across steps that use this directory. Files and changes in the chosen directory persist across steps, ensuring continuity. For more information, refer to the Create Working Directory action documentation for guidance on setting up and selecting working directories. |
Parameter | Description |
---|---|
Name | The name given to the working directory |
Parameter | Description |
---|---|
URL | Address of the resource. |
File identifier | The identifier of the file. This can be used as input for subsequent Steps. |
Show output | Display the content downloaded from the given URL. |
Headers | Request Headers to be added to the request in the format Name: Value. For example: Content-Type: application/json . |
Cookies | Web cookies to include in the request in the format Name: Value. For example: Session: gr32tsd266yfg3u3t132kyl . |
Disable SSL Enforcement | Enable this option to skip SSL verification of the server’s certificate chain and host name. This may increase security vulnerabilities, but can be useful for testing or when custom verification is employed. |
Parameter | Description |
---|---|
File Path | The file from which to print the content |
Working Directory | The directory where the file is located. The filesystem state is preserved across steps using this directory, ensuring that files and changes persist for continuity. For more information, refer to the Create Working Directory action documentation for guidance on setting up and selecting working directories. |
Working Directory
created in step 1 needs to be entered into the input fields for both the ‘Run Bash’ action in step 2 and the ‘Set File Variable’ action in step 3. This ensures that both actions operate within the same directory, maintaining consistency across the workflow."WorkingDirectory"
.echo $(getent passwd) > users
{{ WorkingDirectory.Identifier }}
using the variable picker to ensure the script executes within the created directory."MyFile"
"users"
{{ WorkingDirectory.Identifier }}
using the variable picker .