mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2025-01-19 02:43:15 +00:00
なんかもう全部変えた
This commit is contained in:
parent
25cbc32ef9
commit
5a468e37f9
|
@ -2,10 +2,18 @@ package one.nem.lacerta.source.file;
|
||||||
|
|
||||||
import android.graphics.Bitmap;
|
import android.graphics.Bitmap;
|
||||||
|
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
public interface FileManager {
|
public interface FileManager {
|
||||||
|
|
||||||
void initRepoDir();
|
Path getRootDir();
|
||||||
void addImageByIndex(Bitmap bitmap, int index);
|
void changeDir(String dirName); //cd
|
||||||
void deleteImageByIndex(int index);
|
void backDir(); //cd ..
|
||||||
|
void backRootDir(); //cd /
|
||||||
|
List<String> getDirList(); //ls
|
||||||
|
List<String> getFileList(); //ls
|
||||||
|
void createDir();
|
||||||
|
void removeDir();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user