Skip to main content
A newer version of this page is available. .
Tab

FileManagerFileUploadEventArgs.FileName Property

Gets or sets the name of a file selected to upload.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public string FileName { get; set; }

Property Value

Type Description
String

A String value that specifies the file name.

Remarks

Use the FileName property to get the name of the file currently being processed. By default, it is equal to the e.File.Name (FileManagerItem.Name) property value.

Sometimes, the uploaded file’s name may not suit your application’s requirements. In this case, you can specify a custom name for the file via the FileName property.

See Also