mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
なんかもう全部変えた
This commit is contained in:
parent
865d8b994c
commit
7ba70cc84b
|
@ -2,10 +2,18 @@ package one.nem.lacerta.source.file;
|
|||
|
||||
import android.graphics.Bitmap;
|
||||
|
||||
import java.nio.file.Path;
|
||||
import java.util.List;
|
||||
|
||||
public interface FileManager {
|
||||
|
||||
void initRepoDir();
|
||||
void addImageByIndex(Bitmap bitmap, int index);
|
||||
void deleteImageByIndex(int index);
|
||||
Path getRootDir();
|
||||
void changeDir(String dirName); //cd
|
||||
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