DataLakeFileSystemClient.DeleteFile Method

Definition

The DeleteFile(String, DataLakeRequestConditions, CancellationToken) deletes a file in this file system.

For more information, see Delete Path.

public virtual Azure.Response DeleteFile (string path, Azure.Storage.Files.DataLake.Models.DataLakeRequestConditions conditions = default, System.Threading.CancellationToken cancellationToken = default);
abstract member DeleteFile : string * Azure.Storage.Files.DataLake.Models.DataLakeRequestConditions * System.Threading.CancellationToken -> Azure.Response
override this.DeleteFile : string * Azure.Storage.Files.DataLake.Models.DataLakeRequestConditions * System.Threading.CancellationToken -> Azure.Response
Public Overridable Function DeleteFile (path As String, Optional conditions As DataLakeRequestConditions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response

Parameters

path
String

The path to the file to delete.

conditions
DataLakeRequestConditions

Optional DataLakeRequestConditions to add conditions on deleting this path.

cancellationToken
CancellationToken

Optional CancellationToken to propagate notifications that the operation should be cancelled.

Returns

A Response on successfully deleting.

Remarks

A RequestFailedException will be thrown if a failure occurs.

Applies to