Back to Devexpress

FileSystemConfiguration.AllowRename Property

aspnetcore-devextreme-dot-aspnet-dot-mvc-dot-filemanagement-dot-filesystemconfiguration-6c995fc8.md

latest1.3 KB
Original Source

FileSystemConfiguration.AllowRename Property

Specifies whether users can rename files and folders.

Namespace : DevExtreme.AspNet.Mvc.FileManagement

Assembly : DevExtreme.AspNet.Core.dll

Declaration

csharp
public bool AllowRename { get; set; }

Property Value

TypeDescription
Boolean

true , to allow users to rename files and folders; otherwise, false.

|

Remarks

API Controller:

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

Concepts

Online Demo

See Also

FileSystemConfiguration Class

FileSystemConfiguration Members

DevExtreme.AspNet.Mvc.FileManagement Namespace