I want to delete some files after a certain a time say once every day.Is using deleteOnExit() for this a good option ? Any other suggestions ?

I have some flash content which render its state by reading from some xml files stored inside web server root.These xmls are created on the fly.Now I want to delete these files.It would be better if I can manage this using java

link|improve this question

63% accept rate
1. DeleteOnExit only runs at JVM exit 2. It can lead to huge memory issues, because it is storing a huge cache of these in memory. 3. Could you elaborate exactly where these are being stored, what they are being used for, multithreading issues thereof [a problem with CRON], etc. – MJB Apr 25 '11 at 18:37
feedback

4 Answers

Personally, I would write a script that goes through your directory to delete files that meet your criteria (24 hours old, for instance) and run it via a cron job. I would probably have it run at a time when server load is lowest.

link|improve this answer
feedback
java.io.File.createTempFile(prefix, suffix);

Let the temp file management for that operating system determine the policy for destroying files.

link|improve this answer
This works unless you are running on Windows whose policy on temp files is "do nothing". – Sasha O Apr 25 '11 at 18:37
I have downvoted your suggestion because there is no temp file management in many OSs. For example on Windows, running on Tomcat, this all goes to Tomcat\temp, not even %TEMP%. On Linux, yes, it typically goes to a /tmp subdir. – MJB Apr 25 '11 at 18:38
Windows has temp file management, if Tomcat chooses NOT to use it, it doesn't mean that it doesn't exist. If you don't know that windows has temp file management, pray tell, why do you know it's controlled by the %TEMP% variable? – Edwin Buck Apr 25 '11 at 19:04
There's no MANAGEMENT of %TEMP%. Please cite a link. – MJB Apr 26 '11 at 5:54
feedback

The problem with deleteOnExit() is that if your application crashes the files are left forever. I would run a thread to clean the temp directory (except for the open files) periodically.

link|improve this answer
feedback

Consider using Quartz to schedule operations in Java. You could either scan the directory for files older than 24 hours on a recurring schedule, or create a new job for each file that runs 24 hours later.

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.