BaseUploadControl.TempDirectory Property ActiveX/Java Uploader ASP.NET

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

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

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

Syntax

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