From 5a0b215626381007f9220faa7f2d19d2b504d127 Mon Sep 17 00:00:00 2001 From: r-ca Date: Mon, 8 Jan 2024 11:24:29 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=95=E3=82=A1=E3=82=A4=E3=83=AB=E3=83=9E?= =?UTF-8?q?=E3=83=8D=E3=83=BC=E3=82=B8=E3=83=A3=E3=81=AB=E3=83=A1=E3=82=BD?= =?UTF-8?q?=E3=83=83=E3=83=89=E8=BF=BD=E5=8A=A0=20WIP?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/one/nem/lacerta/source/file/FileManager.java | 4 ++++ 1 file changed, 4 insertions(+) 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 30a89143..90a2b2f1 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 @@ -20,6 +20,10 @@ public interface FileManager { File createFile(String fileName); void removeFile(String fileName); + boolean isExist(Path path); + + void autoCreateDir(Path path); + void saveBitmapAtCurrent(Bitmap bitmap, String fileName); Bitmap loadBitmap(Path path); void removeBitmap(Path path);