Exemplo n.º 1
0
 internal PhysicalStorageFile(PhysicalFileSystem fileSystem, PhysicalStoragePath path)
     : base(fileSystem, path)
 {
     _fullPath       = path.FullPath;
     _fullParentPath = path.FullPath.Parent !;
     _fileInfo       = new FileInfo(_fullPath.ToString());
 }
Exemplo n.º 2
0
 public PhysicalStorageFolder(PhysicalFileSystem fileSystem, PhysicalStoragePath path)
     : base(fileSystem, path)
 {
     _fullPath       = path.FullPath;
     _fullParentPath = path.FullPath.Parent;
 }
Exemplo n.º 3
0
 public WindowsStorageStorageFolder(WindowsStorageFileSystem fileSystem, PhysicalStoragePath path)
     : base(fileSystem, path)
 {
     _fullPath       = Path.FullPath;
     _fullParentPath = _fullPath.Parent;
 }