本文介绍了当我从文件中获取图像时,文件保持锁定状态的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 当我从文件中获取图像时,文件仍然处于锁定状态,因此删除 失败并显示另一个进程使用 所以我尝试使用克隆并处理获得的图像。 但这并没有解决问题。 你能帮忙吗? Dim zz As Image = Image.FromFile(imageFileName) MyImage = zz.Clone zz.Dispose() zz =没什么 File.Delete(imageFileName) 解决方案 When I get the image from the file the file remains locked so the Deletefails with a "used by another process" So I tried using a clone and disposing the obtained image. But that didn''t fix the problem. Can you help? Dim zz As Image = Image.FromFile(imageFileName) MyImage = zz.Clone zz.Dispose() zz = Nothing File.Delete(imageFileName) 解决方案 这篇关于当我从文件中获取图像时,文件保持锁定状态的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-24 05:19