Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am having the below code snippet to delete files older tahn 30 days and its deleting all the files in teh directory in UNIX

public void deleteFilesOlderThanNdays(final int daysBack, final String dirWay) {

              System.out.println(dirWay);
    System.out.println(daysBack);

    final File directory = new File(dirWay);
    if(directory.exists()){
        System.out.println(" Directory Exists");
        final File[] listFiles = directory.listFiles();          
        final long purgeTime = System.currentTimeMillis() - (daysBack * 24 * 60 * 60 * 1000);
        System.out.println("System.currentTimeMillis " + System.currentTimeMillis());
        System.out.println("purgeTime " + purgeTime);

        for(File listFile : listFiles) {
            System.out.println("Length : "+ listFiles.length);
            System.out.println("listFile.getName() : " +listFile.getName());
            System.out.println("listFile.lastModified() :"+listFile.lastModified());
            if(listFile.lastModified() < purgeTime) {
            //  if(!listFile.delete()) {
            //      CTLoggerUtil.logError("Unable to delete file: " + listFile);
                //}
                System.out.println("Inside File Delete");
            }
        }
    } else {
 //directory not found      }
}
share|improve this question
I am having the below code snippet to delete files older tahn 30 days and its deleting all the files in the directory in UNIX folder and not the files which is just older than 30 days – user549432 Jul 28 '11 at 22:57
2  
First what are the dates of the files in the directory? Are all the files older than 30 days? Also does System.out.println("Inside File Delete"); get printed out? More information is needed as it will depend on what arguments you are passing to the method. I don't see a problem with the actual logic of the method which leads me to believe its a problem with the arguments you are passing it, specifically final int daysBack – adamjmarkham Jul 28 '11 at 22:57
1  
Do you have to use java? UNIX could do this in one line – Joe Jul 28 '11 at 22:57
1  
It would help to know what time values you're seeing for the files. – Hot Licks Jul 28 '11 at 22:59

1 Answer

up vote 2 down vote accepted

Try to use the Calendar-Class instead:

 Calendar cal = Calendar.getInstance();  
 cal.add(Calendar.DAY_OF_MONTH, daysBack * -1);  
 long purgeTime = cal.getTimeInMillis();   

Or try this solution:

Is your number of days over 24? If so, you have an overflow problem.

If the number of days is 25, the value will be 25 * 24 * 60 * 60 * 1000. The mathematical value is 2160000000. However, this is larger than Integer.MAX_VALUE, and therefore the value overflows to -12516353. As a result, the purge time will be in the future, and will never be met. Values larger than 25 will only make the problem worse; it's even possible the overflow is so bad that the multiplication results in a positive value again leading to perhaps purge all files.

The fix is easy:

  1. declare daysBack as a long
  2. cast daysBack as a long

    long purgeTime = System.currentTimeMillis() - ((long)daysBack * 24 * 60 * 60 * 1000);

  3. Use explicit long literals inside the calculation:

    long purgeTime = System.currentTimeMillis() - (daysBack * 24L * 60L * 60L * 1000L);

For all three solutions, the fact that the first and/or second operand is a long turns the entire result into a long, allowing a value of 2160000000 without overflowing.

share|improve this answer
Thanks a lot Tim for your valudable suggestion It worked and you rock Thanks agai n – user549432 Jul 29 '11 at 2:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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