public byte[] readFile(String path) throws IOException { return FileUtils.readFile(filePath(path)); }
public void writeFile(String path, byte[] content) throws IOException { FileUtils.writeFile(filePath(path), content); }
public boolean doesExist(String path) throws IOException { return FileUtils.doesExist(filePath(path)); }