Skip to main content

◆ deleteFiles() [1/2]

DeleteFilesResponse kinetica.Kinetica.deleteFiles (DeleteFilesRequestrequest_)
inline

Deletes 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 31681 of file KineticaFunctions.cs.

◆ deleteFiles() [2/2]

DeleteFilesResponse kinetica.Kinetica.deleteFiles (IList< string >file_names,
IDictionary< string, string >options = null )
inline

Deletes one or more files from KiFS.

Parameters
file_namesAn array of names of files to be deleted. 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.
optionsOptional parameters.The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 31744 of file KineticaFunctions.cs.

◆ DeleteFilesAsync() [1/2]

async System.Threading.Tasks.Task< DeleteFilesResponse > kinetica.Kinetica.DeleteFilesAsync (DeleteFilesRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Deletes one or more files from KiFS.

(async)

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 31697 of file KineticaFunctions.cs.

◆ DeleteFilesAsync() [2/2]

async System.Threading.Tasks.Task< DeleteFilesResponse > kinetica.Kinetica.DeleteFilesAsync (IList< string >file_names,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Deletes one or more files from KiFS.

(async)

Parameters
file_namesAn array of names of files to be deleted. 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.
optionsOptional parameters.The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 31791 of file KineticaFunctions.cs.