Gets or sets a path to the folder where UploadRequest saves the upload session cache.
Namespace:
Aurigma.ImageUploader
Assembly:
Aurigma.ImageUploader (in Aurigma.ImageUploader.dll)
public string TempDirectory { get; set; }
Type: System..String
The path to the folder where UploadRequest saves the upload session cache.
Default value is "~/App_Data/UploadCache/".
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.