createDirectory method

  1. @override
ReadOnlyDirectory createDirectory(
  1. String path
)
override

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);
}