是否可以使用以下方式在 asp.net 应用程序中创建临时文件和图像:
如果没有,我该怎么做?(ImagePB是之前处理过的Bitmap)
if (System.IO.File.Exists(System.IO.Path.GetTempPath() + @"img" + imgID.ToString() + "PB" + extencao) == true)
{
try
{
System.IO.File.Delete(System.IO.Path.GetTempPath() + @"img" + imgID.ToString() + "PB" + extencao);
imagePB.Save(System.IO.Path.GetTempPath() + @"img" + imgID.ToString() + "PB" + extencao, imgFormat);
}
catch (Exception)
{ }
}