mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
FileManagerに普通のファイル読み書きを追加 WIP
This commit is contained in:
parent
92b48336ac
commit
6a98deab83
|
@ -106,17 +106,25 @@ public class FileManagerImpl implements FileManager {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void saveFileAtCurrent(File file) {
|
public void saveFileAtCurrent(File file) {
|
||||||
|
try {
|
||||||
|
Files.copy(file.toPath(), currentDir.resolve(file.getName()));
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public File getFile(Path path) {
|
public File getFile(Path path) {
|
||||||
return null;
|
// ファイルを取得する
|
||||||
|
return path.toFile();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void removeFile(Path path) {
|
public void removeFile(Path path) {
|
||||||
|
// ファイルを削除する
|
||||||
|
if (path.toFile().exists()) {
|
||||||
|
path.toFile().delete(); // Resultを返す?
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user