getFileRef実装

This commit is contained in:
r-ca 2024-01-09 12:46:20 +09:00
parent c28d94e417
commit 8ca642c7f4
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -68,7 +68,11 @@ public class FileManagerImpl implements FileManager {
@Override
public File getFileRef() {
return null;
if (this.isExist()) {
return this.path.toFile();
} else {
return null;
}
}
@Override