◆ downloadFiles() [1/2]
| inline |
Downloads one or more files from KiFS.
Parameters
| request_ | Request object containing the parameters for the operation. |
Returns
Response object containing the result of the operation.
Definition at line 32489 of file KineticaFunctions.cs.
◆ downloadFiles() [2/2]
| inline |
Downloads one or more files from KiFS.
Parameters
| file_names | An array of the file names to download from KiFS. File paths may contain wildcard characters after the KiFS directory delimiter. Accepted wildcard characters are asterisk (*) to represent any string of zero or more characters, and question mark (?) to indicate a single character. |
| read_offsets | An array of starting byte offsets from which to read each respective file in file_names . Must either be empty or the same length as file_names . If empty, files are downloaded in their entirety. If not empty, read_lengths must also not be empty. |
| read_lengths | Array of number of bytes to read from each respective file in file_names . Must either be empty or the same length as file_names . If empty, files are downloaded in their entirety. If not empty, read_offsets must also not be empty. |
| options | Optional parameters.
|
Returns
Response object containing the result of the operation.
Definition at line 32567 of file KineticaFunctions.cs.
◆ DownloadFilesAsync() [1/2]
| inline |
Downloads one or more files from KiFS.
(async)
Parameters
| request_ | Request object containing the parameters for the operation. |
| cancellationToken | Cancellation token to cancel the operation. |
Returns
Task that returns the response object containing the result of the operation.
Definition at line 32505 of file KineticaFunctions.cs.
◆ DownloadFilesAsync() [2/2]
| inline |
Downloads one or more files from KiFS.
(async)
Parameters
| file_names | An array of the file names to download from KiFS. File paths may contain wildcard characters after the KiFS directory delimiter. Accepted wildcard characters are asterisk (*) to represent any string of zero or more characters, and question mark (?) to indicate a single character. |
| read_offsets | An array of starting byte offsets from which to read each respective file in file_names . Must either be empty or the same length as file_names . If empty, files are downloaded in their entirety. If not empty, read_lengths must also not be empty. |
| read_lengths | Array of number of bytes to read from each respective file in file_names . Must either be empty or the same length as file_names . If empty, files are downloaded in their entirety. If not empty, read_offsets must also not be empty. |
| options | Optional parameters.
|
| cancellationToken | Cancellation token to cancel the operation. |
Returns
Task that returns the response object containing the result of the operation.
Definition at line 32632 of file KineticaFunctions.cs.