Finish implementing - and testing SNBT
This commit is contained in:
parent
a0f372693b
commit
dfd536ae1c
10 changed files with 57 additions and 3 deletions
|
@ -15,7 +15,10 @@ class PathHelper {
|
|||
}
|
||||
|
||||
bool exists() {
|
||||
return File(build()).existsSync();
|
||||
File fi = File(build());
|
||||
Directory dir = Directory(build());
|
||||
|
||||
return fi.existsSync() || dir.existsSync();
|
||||
}
|
||||
|
||||
PathHelper clone() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue