why does this code lock my files? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T13:14:39Zhttp://stackoverflow.com/feeds/question/805041http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/805041/why-does-this-code-lock-my-files3why does this code lock my files?Crash8932009-04-30T01:38:52Z2009-04-30T14:16:54Z
<p>Ive narrowed down to this method but i don't understand why its locking the file. I believe you could use something like</p>
<pre><code>using( something)
{
//do stuff here
}
</code></pre>
<p>But im not sure that would A) solve the issue or B) be the correct way if it did.</p>
<p>any ideas?</p>
<pre><code>[DllImport("user32.dll", CharSet = CharSet.Auto)]private static extern Int32 SystemParametersInfo(UInt32 action, UInt32 uParam, String vParam, UInt32 winIni);
private static readonly UInt32 SPI_SETDESKWALLPAPER = 0x14;
private static readonly UInt32 SPIF_UPDATEINIFILE = 0x01;
private static readonly UInt32 SPIF_SENDWININICHANGE = 0x02;
private void SetWallpaper(string path)
{
try
{
Image imgInFile = Image.FromFile(path);
imgInFile.Save(SaveFile, ImageFormat.Bmp);
SystemParametersInfo(SPI_SETDESKWALLPAPER, 3, SaveFile, SPIF_UPDATEINIFILE | SPIF_SENDWININICHANGE);
}
catch
{
MessageBox.Show("error in setting the wallpaper");
}
}
</code></pre>
#
<p>Updated code</p>
<pre><code> private void SetWallpaper(string path)
{
if (File.Exists(path))
{
Image imgInFile = Image.FromFile(path);
try
{
imgInFile.Save(SaveFile, ImageFormat.Bmp);
SystemParametersInfo(SPI_SETDESKWALLPAPER, 3, SaveFile, SPIF_UPDATEINIFILE | SPIF_SENDWININICHANGE);
}
catch
{
MessageBox.Show("error in setting the wallpaper");
}
finally
{
imgInFile.Dispose();
}
}
}
</code></pre>
http://stackoverflow.com/questions/805041/why-does-this-code-lock-my-files/805059#80505913Answer by Simon Buchan for why does this code lock my files?Simon Buchan2009-04-30T01:48:31Z2009-04-30T01:48:31Z<p>From <a href="http://msdn.microsoft.com/en-us/library/stf701f5.aspx" rel="nofollow">MSDN</a>: "The file remains locked until the Image is disposed." - so yes, this should be fixed by:</p>
<pre><code>using (Image imgInFile ...) { ... }
</code></pre>
<p>(As a side note, I would tighten the try catch to just the .Save() and/or SystemParametersInfo() calls)</p>
http://stackoverflow.com/questions/805041/why-does-this-code-lock-my-files/805064#8050641Answer by HVS for why does this code lock my files?HVS2009-04-30T01:52:14Z2009-04-30T08:42:36Z<p>Once you pass out of the <strong>using</strong> block, all objects initialized within it are disposed. In your case, the objects will be disposed which will remove the lock on the file.</p>
<p>You must manually dispose (either through a <strong>using</strong> statement or by calling <em>.Dispose()</em> on the object) any unmanaged calls to either COM or Windows API functions (i.e. when you use interop).</p>
http://stackoverflow.com/questions/805041/why-does-this-code-lock-my-files/805374#8053740Answer by Crash893 for why does this code lock my files?Crash8932009-04-30T04:54:25Z2009-04-30T14:16:54Z<p>Here is what i have please let me know if you see anything that i could pretty up. But its working like a champ so i'm pretty happy.</p>
<pre><code> private void SetWallpaper(string path)
{
if (File.Exists(path))
{
Image imgInFile = Image.FromFile(path);
try
{
imgInFile.Save(SaveFile, ImageFormat.Bmp);
SystemParametersInfo(SPI_SETDESKWALLPAPER, 3, SaveFile, SPIF_UPDATEINIFILE | SPIF_SENDWININICHANGE);
}
catch
{
MessageBox.Show("error in setting the wallpaper");
}
finally
{
imgInFile.Dispose();
}
}
Else
{
messagebox.show("Error with path: "+path+" Not found or in use");
}
}
</code></pre>