Implemented interface member:
property
MountPoint
Microsoft.TemplateEngine.Abstractions.Mount.IFileSystemInfo.MountPoint
1 write to MountPoint
Microsoft.TemplateEngine.Edge (1)
Mount\FileSystemInfoBase.cs (1)
17
MountPoint
= mountPoint;
9 references to MountPoint
Microsoft.TemplateEngine.Edge (9)
Mount\FileSystem\FileSystemDirectory.cs (5)
30
if (
MountPoint
is not FileSystemMountPoint fileSystemMountPoint)
60
string baseName = x.Substring(((FileSystemMountPoint)
MountPoint
).MountPointRootPath.Length).Replace(Path.DirectorySeparatorChar, '/');
77
return new FileSystemDirectory(
MountPoint
, baseName, _paths.Name(x), x);
85
string baseName = x.Substring(((FileSystemMountPoint)
MountPoint
).MountPointRootPath.Length).Replace(Path.DirectorySeparatorChar, '/');
97
return new FileSystemFile(
MountPoint
, baseName, _paths.Name(x), x);
Mount\FileSystem\FileSystemFile.cs (2)
18
public override bool Exists =>
MountPoint
.EnvironmentSettings.Host.FileSystem.FileExists(_physicalPath);
22
return
MountPoint
.EnvironmentSettings.Host.FileSystem.OpenRead(_physicalPath);
Mount\FileSystemInfoBase.cs (2)
37
return
MountPoint
.Root;
55
_parent =
MountPoint
.DirectoryInfo(parentPath);