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 }
}
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, specificallyfinal int daysBack– adamjmarkham Jul 28 '11 at 22:57