createDirectory method
Creates a new Directory object for the given path
.
When this override is installed, this function overrides the behavior of
new Directory()
and new Directory.fromUri()
.
Implementation
@override
ReadOnlyDirectory createDirectory(String path) {
return ArchiveDirectory._(_fs, path);
}