up vote 24 down vote favorite
1
share [g+] share [fb]

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.

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 System.IO.File.Delete and System.IO.FileInfo.Delete will not delete a read-only file.

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?

link|improve this question

2  
I changed the accepted answer because Gulzar's code sample is more detailed than Tim Stewart's. Should've chose that one in the first place but for some reason I liked Tim's better. People are strange things! – OwenP Apr 30 '09 at 22:13
1  
+1 for taking the time to make things a little more right in the universe. If only my developers would go back and correct our own minor transgressions, we'd be able to cancel the Remedial Programming classes! – Adam Liss May 1 '09 at 11:38
feedback

5 Answers

up vote 49 down vote accepted

Adding some sample code to Tim's answer:

using System.IO;

File.SetAttributes(filePath, FileAttributes.Normal);
File.Delete(filePath);
link|improve this answer
You get an upvote for being right, but your answer came in after Tim Stewart's which said the same thing. – OwenP Nov 5 '08 at 17:33
1  
thats fine. Tim deserves it. thought some code will help. – Gulzar Nazim Nov 5 '08 at 17:36
feedback

According to File.Delete's documentation,, you'll have to strip the read-only attribute. You can set the file's attributes using File.SetAttributes().

link|improve this answer
I accepted this one for being first. – OwenP Nov 5 '08 at 17:31
4  
It's not about being first. – VVS Nov 5 '08 at 17:55
feedback

Why do you need to check? Just forcibly clear the read-only flag and delete the file.

link|improve this answer
feedback

Hm, I think I'd rather put

>del /F *

into a sheduled task. Maybe wrapped by a batch file for logging statistics.

Am I missing something?

link|improve this answer
Yes. He wants to delete A file when it is of particular age. Not all the files every period. – DrFloyd5 Nov 5 '08 at 17:22
He doesn't want to delete all files, just all files older than a certain amount of time. – Tim Stewart Nov 5 '08 at 17:22
feedback

The equivalent if you happen to be working with a FileInfo object is:

file.IsReadOnly = false;
file.Delete();
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.