stat method
- String path,
- {EntityType type = EntityType.file}
override
Implementation
@override
Stat stat(
String path, {
EntityType type = EntityType.file,
}) {
var (fs, rPath) = getFileSystemAndRelativePathByPath(path);
if (fs != null && rPath != null) {
return fs.stat(rPath);
}
throw "[Disk]: FileSystems don't mount.";
}