1 implementation of MountPoint
Microsoft.TemplateEngine.Edge (1)
Mount\FileSystemInfoBase.cs (1)
64public IMountPoint MountPoint { get; }
10 references to MountPoint
Microsoft.TemplateEngine.Abstractions (1)
Mount\IFileSystemInfo.cs (1)
19/// Gets the path to file system entry inside mount point <see cref="MountPoint"/>.
Microsoft.TemplateEngine.Utils (9)
FileSystemInfoExtensions.cs (5)
12source.MountPoint.EnvironmentSettings.Host.FileSystem.CreateDirectory(target); 16using Stream f = source.MountPoint.EnvironmentSettings.Host.FileSystem.CreateFile(Path.Combine(target, file.Name)); 50return info.MountPoint.FileInfo(fullPath); 56return info.MountPoint.DirectoryInfo(fullPath); 62return info.MountPoint.FileSystemInfo(fullPath);
IFileSystemInfoExtensions.cs (4)
23if (fileSystemInfo.MountPoint.EnvironmentSettings.Host.FileSystem.DirectoryExists(fileSystemInfo.MountPoint.MountPointUri)) 26result = Path.Combine(fileSystemInfo.MountPoint.MountPointUri, fileSystemInfo.FullPath.Trim('/', '\\')); 31result = $"{fileSystemInfo.MountPoint.MountPointUri}({fileSystemInfo.FullPath})";