码迷,mamicode.com
首页 > Windows程序 > 详细

WPF“正由另一进程使用,因此该进程无法访问该文件”的解决方法

时间:2021-05-24 05:24:04      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:问题   class   无法访问   file   不成功   访问   highlight   ade   length   

问题原因:

WPF 打开本地图片,同时另一个进程去访问这个图片;

BitmapImage bitmap = new BitmapImage();
bitmap.BeginInit();
bitmap.UriSource = new Uri(filePath);
bitmap.EndInit();

Image currentImage .Source = bitmap;

此时提升:正由另一进程使用,因此该进程无法访问该文件”

尝试了很多方法,都不成功,最终解决方案如下:

// 把图片写进 byte[] 缓存
BinaryReader binaryReader = new BinaryReader(File.Open(filePath, FileMode.Open));
FileInfo fileInfo = new FileInfo(filePath);
byte[] bytes = binaryReader.ReadBytes((int)fileInfo.Length);
binReader.Close();

// 把byte[] 缓存作为图片资源
BitmapImage bitmap = new BitmapImage();
bitmap.BeginInit();
bitmap.StreamSource = new MemoryStream(bytes);
bitmap.EndInit();

Image currentImage .Source = bitmap;

  

  

WPF“正由另一进程使用,因此该进程无法访问该文件”的解决方法

标签:问题   class   无法访问   file   不成功   访问   highlight   ade   length   

原文地址:https://www.cnblogs.com/microsoft-zh/p/14754939.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!