mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 08:23:15 +00:00
Currentまでを自動で作成するメソッドを作成
This commit is contained in:
parent
5cb57997b8
commit
31a0220b90
|
@ -24,6 +24,8 @@ public interface FileManager {
|
||||||
|
|
||||||
void autoCreateDir(Path path);
|
void autoCreateDir(Path path);
|
||||||
|
|
||||||
|
void autoCreateToCurrentDir();
|
||||||
|
|
||||||
void saveBitmapAtCurrent(Bitmap bitmap, String fileName);
|
void saveBitmapAtCurrent(Bitmap bitmap, String fileName);
|
||||||
Bitmap loadBitmap(Path path);
|
Bitmap loadBitmap(Path path);
|
||||||
void removeBitmap(Path path);
|
void removeBitmap(Path path);
|
||||||
|
|
|
@ -127,7 +127,8 @@ public class FileManagerImpl implements FileManager {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void autoGenerateToCurrentDir() {
|
@Override
|
||||||
|
public void autoCreateToCurrentDir() {
|
||||||
logger.debug("autoGenerateToCurrentDir", "called");
|
logger.debug("autoGenerateToCurrentDir", "called");
|
||||||
autoCreateDir(currentDir);
|
autoCreateDir(currentDir);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user