AppendToFile
Create and Write to a File.
Input
Name | Type | Required | Accepts Input Streams | Description |
Path | String | True | False | The absolute path of the file for which content will be appended. |
FilePath | String | False | False | The path of the file whose content will be appended to the specified file. Has higher priority than Content. |
Content | String | False | False | The content as a string which will be appended to the specified file. Has lower priority than FilePath. |
Stream | String | False | True | The content as an InputStream which will be written to the newly created file. Alternative to FilePath and Content. |
Result Set Columns
Name | Type | Description |
Success | Boolean | Whether the operation completed successfully or not. |