This documentation is for the old version. Go to the latest Upload Suite docs

BaseUploadControl.TempDirectory Property

Gets or sets a path to the folder where the upload session cache should be saved.

Namespace: Aurigma.ImageUploaderFlash
Assembly: Aurigma.ImageUploaderFlash (in Aurigma.ImageUploaderFlash.dll)

Syntax

Visual Basic
Public Property TempDirectory As String
C#
public string TempDirectory { get; set; }

Property Value

Type: System.String

The path to the folder where BaseUploadControl saves the upload session cache.

Default value is "~/App_Data/UploadCache/".

Remarks

By the moment when the FileUploaded or AllFilesUploaded event is fired, the BaseUploadControl has already completed parsing of HTTP POST request(s) and saved files to a temporary folder specified by this property. Then, when you call the ConvertedFile.SaveAs(String) or ConvertedFile.MoveTo(String) method, files from this temporary folder are copied or moved to the specified path. Thus, it is recommended to select temporary folder on the same disk where your file storage is located.

This recommendation is also appropriate for autosave functionality.

See Also

Reference