DownloadFile
Downloads a file from Azure Data Lake Storage to a specified local path, requiring both the file path in storage and the destination download path.
Input
| Name | Type | Accepts Output Streams | Description |
| Path | String | False | Mandatory. The full path of the Azure Data Lake Storage file to download. |
| DownloadPath | String | False | The local path where the downloaded file is saved. |
| FileStream | String | True | An output stream that receives the file data when DownloadPath is not specified. |
Result Set Columns
| Name | Type | Description |
| FileData | String | The file content returned as Base64-encoded data when neither DownloadPath nor FileStream is provided. |
| Success | String | Indicates whether the file download operation completed successfully. |