List of utility methods to do File Touch
void | touchOrCrash(File f) touch Or Crash if (!f.exists()) { f.getParentFile().mkdirs(); f.createNewFile(); if (!f.isFile()) throw new RuntimeException("\"" + f.getAbsolutePath() + "\" must be a file. Aborting."); |
void | touchRecursive(File f, long timestamp) touch Recursive f.setLastModified(timestamp);
File parent = f.getParentFile();
if (parent != null)
touchRecursive(parent, timestamp);
|