Back to Devexpress

FileSystemConfiguration.AllowCreate Property

aspnetcore-devextreme-dot-aspnet-dot-mvc-dot-filemanagement-dot-filesystemconfiguration-ccbac58e.md

latest1.2 KB
Original Source

FileSystemConfiguration.AllowCreate Property

Specifies whether users can create folders.

Namespace : DevExtreme.AspNet.Mvc.FileManagement

Assembly : DevExtreme.AspNet.Core.dll

Declaration

csharp
public bool AllowCreate { get; set; }

Property Value

TypeDescription
Boolean

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

|

Remarks

API Controller:

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

Concepts

Online Demo

See Also

FileSystemConfiguration Class

FileSystemConfiguration Members

DevExtreme.AspNet.Mvc.FileManagement Namespace