diff --git a/source/src/main/java/one/nem/lacerta/source/file/FileManager.java b/source/src/main/java/one/nem/lacerta/source/file/FileManager.java index 6403ef98..97fb1dae 100644 --- a/source/src/main/java/one/nem/lacerta/source/file/FileManager.java +++ b/source/src/main/java/one/nem/lacerta/source/file/FileManager.java @@ -30,6 +30,12 @@ public interface FileManager { FileManager setPath(Path path); FileManager resolve(String path) throws IOException; + // Create + FileManager createFile() throws IOException; + FileManager createFile(String fileName) throws IOException; + FileManager createDirectory() throws IOException; + FileManager createDirectory(String directoryName) throws IOException; + // Save // XML void saveXml(Document document, String fileName) throws IOException;