删除图像中使用的文件

时间:2015-08-11 08:14:04

标签: c# io

我在我的代码中执行以下操作(简化):

this.ImageComponent.Source = new BitmapImage(new Uri("myImage.jpg", UriKind.Absolute));

我有一个按钮,当我点击它时,我会执行以下操作:

this.ImageComponent.Source = new BitmapImage(new Uri("anotherImage.jpg", UriKind.Absolute));
System.IO.File.Delete("myImage.jpg");

但我对删除有一个例外,它说它可以访问该文件,因为它被另一个进程使用。 (我尝试过完整和相对的路径)。

0 个答案:

没有答案