一旦コメントアウト

This commit is contained in:
r-ca 2023-12-25 13:34:04 +09:00
parent 6a98deab83
commit 646627ac49
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9
2 changed files with 25 additions and 25 deletions

View File

@ -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);
}

View File

@ -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を返す
// }
// }
}