FileSystemConfiguration.AllowDelete Property
Specifies whether users can delete files and folders.
Namespace: DevExtreme.AspNet.Mvc.FileManagement
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public bool AllowDelete { get; set; }
Property Value
Type | Description |
---|---|
Boolean | true, to allow users to delete files and folders; otherwise, false. |
Remarks
API Controller:
public IActionResult FileSystem(FileSystemCommand command, string arguments) {
var config = new FileSystemConfiguration {
//...
AllowDelete = true,
//...
}
}
Concepts
Online Demo
See Also