117118119120121122123124125126127128
} @Override public void touchFile(String name) throws IOException { DataStoreFile file = getFileByName(name, false); file.touch(); repository.put(file); }
127128129130131132133134135136137
} private DataStoreFile getFileByName(String name, boolean full) throws FileNotFoundException { DataStoreFile file = repository.get(name, full); if (file == null) { throw new FileNotFoundException(name); }