mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-26 09:43:15 +00:00
ディレクトリ/ファイルの判定メソッドを実装
This commit is contained in:
parent
9e5b2dad46
commit
0dced5d0dc
|
@ -78,12 +78,22 @@ public class FileManagerImpl implements FileManager {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isDirectory() {
|
public boolean isDirectory() {
|
||||||
return false;
|
if (this.isExist()) {
|
||||||
|
File file = this.path.toFile();
|
||||||
|
return file.isDirectory();
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isFile() {
|
public boolean isFile() {
|
||||||
return false;
|
if (this.isExist()) {
|
||||||
|
File file = this.path.toFile();
|
||||||
|
return file.isFile();
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue
Block a user