Skip to main content
Tab

FileManagerItem.Name Property

Gets the name of the current item.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.1.dll

NuGet Package: DevExpress.Web

Declaration

public string Name { get; }

Property Value

Type Description
String

A String value that specifies the item’s name.

Remarks

The Name property specifies the name of the current item. In order to obtain the full or relative item’s name, use the FileManagerItem.FullName and FileManagerItem.RelativeName property respectively.

Example

The code below demonstrates how you can show information about folder contents in a label.

public string ItemsNumberToString(int count, string item) {
        if (count != 1) item = item + "s";
        return count.ToString() + " " + item;
}
protected void ASPxFileManager1_Load(object sender, EventArgs e) {
        int FileCount = ASPxFileManager1.SelectedFolder.GetFiles().Length;
        int FolderCount = ASPxFileManager1.SelectedFolder.GetFolders().Length;
        ASPxFileManager1.JSProperties["cpLabelText"] = "The " + ASPxFileManager1.SelectedFolder.Name + " folder contains " + ItemsNumberToString(FolderCount, "folder") + " and " + ItemsNumberToString(FileCount, "file");
}
See Also