Skip to main content

FileSystemConfiguration.AllowCreate Property

Specifies whether users can create folders.

Namespace: DevExtreme.AspNet.Mvc.FileManagement

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public bool AllowCreate { get; set; }

Property Value

Type Description
Boolean

true, to allow users to create folders; otherwise, false.

Remarks

API Controller:

public IActionResult FileSystem(FileSystemCommand command, string arguments) {
    var config = new FileSystemConfiguration {
        //...
        AllowCreate = true,
        //...
    }
}

Concepts

Online Demo

See Also