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