Ejemplo n.º 1
0
 public byte[] readFile(String path) throws IOException {
   return FileUtils.readFile(filePath(path));
 }
Ejemplo n.º 2
0
 public void writeFile(String path, byte[] content) throws IOException {
   FileUtils.writeFile(filePath(path), content);
 }
Ejemplo n.º 3
0
 public boolean doesExist(String path) throws IOException {
   return FileUtils.doesExist(filePath(path));
 }