private FileSystem([NotNull] _Storage storage) { _underlyingStorage = storage; _tempDirectory = Directory(Path.GetTempPath()).CreateInBackground(); }
private FileSystem([NotNull] _StorageSink disk) { _underlyingStorage = new _Storage(this, disk); _tempDirectory = Directory(Path.GetTempPath()).CreateInBackground(); }