Skip to main content

FileSystemCreateDirectoryOptions.DirectoryName Property

Gets a directory name.

Namespace: DevExtreme.AspNet.Mvc.FileManagement

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public string DirectoryName { get; }

Property Value

Type Description
String

The directory name.

Remarks

public void CreateDirectory(FileSystemCreateDirectoryOptions options) {
    string path = GetFileItemPath(options.ParentDirectory);
    string blobKey = $"{options.DirectoryName}/{EmptyDirectoryDummyBlobName}";
    CloudBlockBlob dirBlob = Container.GetBlockBlobReference(blobKey);
    //...
}

Concepts

Online Demos

See Also