mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2025-04-14 04:00:48 +00:00
rootの合致チェックをフラグで切り替えるように
This commit is contained in:
parent
2b8766db0a
commit
8ebc96fa98
@ -22,6 +22,7 @@ public interface FileManager {
|
||||
|
||||
// Configure
|
||||
FileManager enableAutoCreate();
|
||||
FileManager disableRootDirCheck();
|
||||
|
||||
FileManager setRootDir(Path rootDir);
|
||||
FileManager setPath(Path path);
|
||||
|
@ -33,6 +33,7 @@ public class FileManagerImpl implements FileManager {
|
||||
private Path rootDir;
|
||||
private Path path;
|
||||
private boolean autoCreate = false;
|
||||
private boolean disableRootDirCheck = false;
|
||||
|
||||
|
||||
// Injection
|
||||
@ -116,7 +117,9 @@ public class FileManagerImpl implements FileManager {
|
||||
if (path.startsWith(this.rootDir)) {
|
||||
this.path = path;
|
||||
} else {
|
||||
// placeholder
|
||||
if (this.autoCreate) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user