Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个处理图像的应用程序。
我有从字节数组创建新图像的代码。
当我创建一些与旧文件名同名的新图像时。
并尝试删除旧文件
它给了我一个例外,即文件正在使用,访问被拒绝。
我不确定哪个进程持有该图像以及如何释放它。
请帮助我.....删除该文件。
如果您没有以相同的方式使用它,请使用以下代码。
using( FileStream stream = new FileStream( path, FileMode.Open, FileAccess.Read ) ) { image = Image.FromStream( stream ); }
发布您自己的代码,但会有所帮助!