我有下面的代碼:無法加載文件中的MVC
var ordinaryPropertyValue = new Catalog.Core.Entities.OrdinaryPropertyValue();
Environment.CurrentDirectory = System.IO.Path.GetTempPath();
var fileFile = Request.Files["File" + prop.Id];
if (fileFile == null) continue;
string pathFile = Environment.CurrentDirectory;
fileFile.SaveAs(pathFile);
ordinaryPropertyValue.Value = pathFile;
instance.SetPropertyValue(prop.Id, ordinaryPropertyValue);
但我不能加載我的文件「COS的下一個問題:
AccessException:對路徑的訪問'C:\ Users \ Michael \ AppData \ Local \ Temp'被拒絕。
我明白,這是一個安全異常,所以,我該如何解決這個問題? – revolutionkpi