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