Files.createDirIfNoExists("./tmp");
Files.createDirIfNoExists("./tmp/a/b/c");
Files.createDirIfNoExists("./tmp/a/b/e/C/c/F");
Files.createFileIfNoExists("./tmp/a/b/c/D.txt");
EverBoxObject old = new EverBoxObject();
old.setPath("/home");
EverboxAPI.listLocal(old);
EverBoxObject newOne = new EverBoxObject();
newOne.setPath("/home");
Files.createDirIfNoExists("./tmp/a/f/c");
Files.createFileIfNoExists("./tmp/a/b/c/F.txt");
Files.deleteDir(new File("./tmp/a/b/e"));
Files.deleteFile(new File("./tmp/a/b/c/D.txt"));
Files.createFileIfNoExists("./tmp/a/b/c/D.txt");