1 implementation of MountPoint
Microsoft.TemplateEngine.Edge (1)
Mount\FileSystemInfoBase.cs (1)
64
public 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)
12
source.
MountPoint
.EnvironmentSettings.Host.FileSystem.CreateDirectory(target);
16
using Stream f = source.
MountPoint
.EnvironmentSettings.Host.FileSystem.CreateFile(Path.Combine(target, file.Name));
50
return info.
MountPoint
.FileInfo(fullPath);
56
return info.
MountPoint
.DirectoryInfo(fullPath);
62
return info.
MountPoint
.FileSystemInfo(fullPath);
IFileSystemInfoExtensions.cs (4)
23
if (fileSystemInfo.
MountPoint
.EnvironmentSettings.Host.FileSystem.DirectoryExists(fileSystemInfo.
MountPoint
.MountPointUri))
26
result = Path.Combine(fileSystemInfo.
MountPoint
.MountPointUri, fileSystemInfo.FullPath.Trim('/', '\\'));
31
result = $"{fileSystemInfo.
MountPoint
.MountPointUri}({fileSystemInfo.FullPath})";