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.

link|improve this question

49% accept rate
Do you happen to be viewing the result images in an application that might cache them, such as IE? – Chris Farmer May 23 '11 at 19:26
Have a look at this answer from another SO thread: stackoverflow.com/questions/2340337/… – Cory May 23 '11 at 19:28
feedback

3 Answers

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.

link|improve this answer
feedback

You probably need elevated privileges.

See here Windows 7 and Vista UAC - Programatically requesting elevation in C#

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.