mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
一旦コメントアウト
This commit is contained in:
parent
6a98deab83
commit
646627ac49
|
@ -20,8 +20,8 @@ public interface FileManager {
|
|||
Bitmap loadBitmap(Path path);
|
||||
void removeBitmap(Path path);
|
||||
|
||||
void saveFileAtCurrent(File file);
|
||||
File getFile(Path path);
|
||||
void removeFile(Path path);
|
||||
// void saveFileAtCurrent(File file);
|
||||
// File getFile(Path path);
|
||||
// void removeFile(Path path);
|
||||
|
||||
}
|
||||
|
|
|
@ -104,27 +104,27 @@ public class FileManagerImpl implements FileManager {
|
|||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void saveFileAtCurrent(File file) {
|
||||
try {
|
||||
Files.copy(file.toPath(), currentDir.resolve(file.getName()));
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public File getFile(Path path) {
|
||||
// ファイルを取得する
|
||||
return path.toFile();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void removeFile(Path path) {
|
||||
// ファイルを削除する
|
||||
if (path.toFile().exists()) {
|
||||
path.toFile().delete(); // Resultを返す?
|
||||
}
|
||||
}
|
||||
// @Override
|
||||
// public void saveFileAtCurrent(File file) {
|
||||
// try {
|
||||
// Files.copy(file.toPath(), currentDir.resolve(file.getName()));
|
||||
// } catch (IOException e) {
|
||||
// e.printStackTrace();
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public File getFile(Path path) {
|
||||
// // ファイルを取得する
|
||||
// return path.toFile();
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public void removeFile(Path path) {
|
||||
// // ファイルを削除する
|
||||
// if (path.toFile().exists()) {
|
||||
// path.toFile().delete(); // Resultを返す?
|
||||
// }
|
||||
// }
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user