DataLakeFileSystemClient.CreateIfNotExistsAsync Method

Definition

The CreateIfNotExistsAsync(DataLakeFileSystemCreateOptions, CancellationToken) operation creates a new file system under the specified account. If the file system with the same name already exists, the operation fails.

For more information, see Create Container.

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.DataLake.Models.FileSystemInfo>> CreateIfNotExistsAsync (Azure.Storage.Files.DataLake.Models.DataLakeFileSystemCreateOptions options = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateIfNotExistsAsync : Azure.Storage.Files.DataLake.Models.DataLakeFileSystemCreateOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.DataLake.Models.FileSystemInfo>>
override this.CreateIfNotExistsAsync : Azure.Storage.Files.DataLake.Models.DataLakeFileSystemCreateOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Storage.Files.DataLake.Models.FileSystemInfo>>
Public Overridable Function CreateIfNotExistsAsync (Optional options As DataLakeFileSystemCreateOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of FileSystemInfo))

Parameters

options
DataLakeFileSystemCreateOptions

Optional parameters.

cancellationToken
CancellationToken

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

Returns

A Response<T> describing the newly created container.

Remarks

A RequestFailedException will be thrown if a failure occurs.

Applies to