How do I delete a read-only file? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T07:24:14Zhttp://stackoverflow.com/feeds/question/265896http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/265896/how-do-i-delete-a-read-only-file11How do I delete a read-only file?OwenP2008-11-05T17:13:07Z2009-04-25T15:04:04Z
<p>I've got a junk directory where I toss downloads, one-off projects, email drafts, and other various things that might be useful for a few days but don't need to be saved forever. To stop this directory from taking over my machine, I wrote a program that will delete all files older than a specified number of days and logs some statistics about the number of files deleted and their size just for fun.</p>
<p>I noticed that a few project folders were living way longer than they should, so I started to investigate. In particular, it seemed that folders for projects in which I had used SVN were sticking around. It turns out that the read-only files in the .svn directories are not being deleted. I just did a simple test on a read-only file and discovered that <code>System.IO.File.Delete</code> and <code>System.IO.FileInfo.Delete</code> will not delete a read-only file.</p>
<p>I don't care about protecting files in this particular directory; if something important is in there it's in the wrong place. Is there a .NET class that can delete read-only files, or am I going to have to check for read-only attributes and strip them?</p>
http://stackoverflow.com/questions/265896/how-do-i-delete-a-read-only-file/265909#2659092Answer by Adam Liss for How do I delete a read-only file?Adam Liss2008-11-05T17:15:42Z2008-11-05T17:15:42Z<p>Why do you need to check? Just forcibly clear the read-only flag and delete the file.</p>
http://stackoverflow.com/questions/265896/how-do-i-delete-a-read-only-file/265916#2659161Answer by mkoeller for How do I delete a read-only file?mkoeller2008-11-05T17:18:29Z2008-11-05T17:18:29Z<p>Hm, I think I'd rather put</p>
<pre><code>>del /F *
</code></pre>
<p>into a sheduled task. Maybe wrapped by a batch file for logging statistics.</p>
<p>Am I missing something?</p>
http://stackoverflow.com/questions/265896/how-do-i-delete-a-read-only-file/265920#26592013Answer by Tim Stewart for How do I delete a read-only file?Tim Stewart2008-11-05T17:19:14Z2008-11-05T17:19:14Z<p>According to <a href="http://msdn.microsoft.com/en-us/library/system.io.file.delete.aspx" rel="nofollow">File.Delete's documentation,</a>, you'll have to strip the read-only attribute. You can set the file's attributes using <a href="http://msdn.microsoft.com/en-us/library/system.io.file.setattributes.aspx" rel="nofollow">File.SetAttributes()</a>.</p>
http://stackoverflow.com/questions/265896/how-do-i-delete-a-read-only-file/265938#26593831Answer by Gulzar for How do I delete a read-only file?Gulzar2008-11-05T17:23:24Z2009-04-25T15:04:04Z<p>Adding some sample code to Tim's answer:</p>
<blockquote>
<pre><code>using System.IO;
File.SetAttributes(filePath, FileAttributes.Normal);
File.Delete(filePath);
</code></pre>
</blockquote>