IOException:进程无法访问文件“文件路径”,因为它正被另一个进程使用我有一些代码,当它执行时,它会抛出一个IOException说进程无法访问文件“文件名”,因为它正被其他进程使用。这意味着什么,我能做些什么?
3 回答
米脂
TA贡献1836条经验 获得超3个赞
using (var stream = File.Open(path, FileMode.Open, FileAccess.Write, FileShare.ReadWrite)){}
LEATH
TA贡献1936条经验 获得超6个赞
//C# .NETvar image = Image.FromFile(filePath);image.Dispose(); // this removes all resources//later...File.Delete(filePath); //now works
- 3 回答
- 0 关注
- 1135 浏览
添加回答
举报
0/150
提交
取消