ファイルの存在確認を実装

This commit is contained in:
r-ca 2024-01-09 12:23:59 +09:00
parent 3b861e3a07
commit 5c931ece3f
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -72,7 +72,8 @@ public class FileManagerImpl implements FileManager {
@Override @Override
public boolean isExist() { public boolean isExist() {
return false; File file = this.path.toFile();
return file.exists();
} }
@Override @Override