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

FileManagerSettingsEditing.TemporaryFolder Property

Gets or sets the server folder where files, which are currently being downloaded, are maintained.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue("~/FileManagerTemp")]
public virtual string TemporaryFolder { get; set; }

Property Value

Type Default Description
String "~/FileManagerTemp"

A String value specifying the path to the folder.

Property Paths

You can access this nested property as listed below:

Remarks

When multiple file selection is enabled (the FileManagerSettings.EnableMultiSelect is set to true), ASPxFileManager saves each downloaded file into a temporary file within a specific server folder. Use the TemporaryFolder property to specify the folder containing temporary files.

Note

Ensure that the ASP.NET application has ‘write’ access to the temporary folder on the server.

Note that files are deleted from the temporary folder in the following cases:

  • Once a file is downloaded.
  • If an exception occurs during file upload.
See Also