Frends.AzureDataLake.DownloadFiles / 2.0.0
Summary
Copies files matching a pattern out of a container onto the agent's file system, deciding whether existing local files may be replaced.
Typical use — pulling a batch down for local processing
Input parameters.
| Name | Type | Default | Example | Description |
|---|---|---|---|---|
| ContainerName | String |
test-container |
test-container |
Name of the Azure Data Lake container where the data will be downloaded from. Naming: lowercase Valid chars: alphanumeric and dash, but cannot start or end with dash. |
| SourceFilePattern | String |
*.txt |
*.txt |
Full path pattern of file(s) you want to download from source DataLake. This parameter can contain a combination of valid literal path and wildcard (* and ?) characters, but it doesn't support regular expressions. |
| DestinationDirectory | String |
– | c:\temp |
Destination directory on the local file system. |
| Overwrite | Boolean |
False |
true |
How the existing file will be handled. |