vote up 11 vote down star

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?

flag

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 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 at 11:38

4 Answers

vote up 31 vote down check

Adding some sample code to Tim's answer:

using System.IO;

File.SetAttributes(filePath, FileAttributes.Normal);
File.Delete(filePath);
link|flag
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 Nov 5 '08 at 17:36
vote up 13 vote down

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|flag
I accepted this one for being first. – OwenP Nov 5 '08 at 17:31
2  
It's not about being first. – VVS Nov 5 '08 at 17:55
vote up 1 vote down

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|flag
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
vote up 2 vote down

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

link|flag

Your Answer

Get an OpenID
or

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