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