UploadRequest.TempDirectory Property HTML5/Flash Uploader ASP.NET

Supported technologies: Adobe FlashHTML 5

Gets or sets a path to the folder where UploadRequest saves the upload session cache.

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

Syntax

C#
public string TempDirectory { get; set; }

Property Value

Type: System..String

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

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

Remarks

By the moment when the FileUploaded or AllFilesUploaded event is fired, the UploadRequest 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