List of utility methods to do File Touch
void | touch(File file) Implements the same behavior as the "touch" utility on Unix. if (!file.exists()) { OutputStream out = new FileOutputStream(file); try { out.close(); } catch (IOException e) { file.setLastModified(System.currentTimeMillis()); ... |