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)
public string TempDirectory { get; set; }
Type: System..String
The path to the folder where BaseUploadControl saves the upload session cache.
Default value is "~/App_Data/UploadCache/".
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.