Win7中Image.Save无法覆盖写入图像
我正在尝试使用 Image.Save 方法将图像保存到本地驱动器中。它在其他操作系统中工作正常,但我在 Win7 中只看到问题。
在Win7中它不能覆盖现有的图像,即使它不抛出任何错误。可能是 Win7 中的一个错误,因为我在这里看到了相关的修补程序 http://support.microsoft.com/kb /2028610 。
但这个热修复并没有解决我的问题。如果有人遇到同样的问题请告诉我。
谢谢。
I'm trying to save a image into a local drive using Image.Save
method. It works fine in other OS but I see only problem in Win7.
In Win7 it can't overwrite existing images, even it does not throw any error. Possibly it's a bug in Win7 as I see a related hot fix here http://support.microsoft.com/kb/2028610 .
But this hot fix doesn't solve my problem. If anyone have encountered same issue please let me know.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一种解决方法,但是您可以先删除现有图像吗?保存之前的
System.IO.File.Delete(path)
应该会为您提供更多信息。This is sort of a workaround, but can you delete the existing image first?
System.IO.File.Delete(path)
before the save should give you more info.您可能需要提升权限。
请参阅此处 Windows 7 和 Vista UAC - 以编程方式请求提升C#
You probably need elevated privileges.
See here Windows 7 and Vista UAC - Programmatically requesting elevation in C#
您想将其保存到哪个文件夹? C: 驱动器的根文件夹? Win7 在以编程方式将文件保存到驱动器的根文件夹方面变化无常。尝试将其保存到根目录之外的文件夹中,看看是否有帮助。
What folder are you trying to save it to? The root folder of your C: drive? Win7 is fickle about programmitcally saving files to the root folder of a drive. Try saving it to a folder off of the root and see if that helps.