我正在为 Crowling 图像使用以下代码。
我正在删除已经存在的图像。
它正在工作,但是当我保存新图像时,它正在保存图像,但创建的文件时间显示与以前创建的文件时间相同。
谁能知道我该如何解决这个问题?
我的代码如下。
Image _Image = DownloadImage(ImageSrc);
if (_Image != null)
{
if (File.Exists(LargeImagePath + FileName))
{
File.Delete(LargeImagePath + FileName);
}
_Image.Save(LargeImagePath + FileName);
}