WPF项目需要不断更新前台图片时,碰到“System.IO.IOException: 文件“xxx”正由另一进程使用“问题的解决
作者:互联网
问题描述
项目中要求能不断拍照并更新显示图片,使用FileStream在本地创建了图片文件; 当下次重新拍照前删除之前拍过的图片时,提示“System.IO.IOException: 文件“xxx”正由另一进程使用,这是因为FileStream在创建本地图片后,没有及时的释放掉资源。
解决办法:
可使用Using语法,using 语句允许程序员指定使用资源的对象应当何时释放资源。为 using 语句提供的对象必须实现 IDisposable 接口。
using (FileStream fstream = new FileStream(strPicturePath, FileMode.Create)) { encoder.Save(fstream); fstream.Close(); fstream.Dispose(); }
标签:FileStream,fstream,xxx,System,IOException,using,图片 来源: https://www.cnblogs.com/NetNotes/p/16210512.html