1 implementation of FullPath
Microsoft.TemplateEngine.Edge (1)
Mount\FileSystemInfoBase.cs (1)
22
public string
FullPath
{ get; }
15 references to FullPath
Microsoft.TemplateEngine.Core (2)
Util\Orchestrator.cs (2)
292
throw new TemplateAuthoringException($"Template authoring error encountered while processing file {sourceFile.
FullPath
}: {ex.Message}", ex.ConfigItem, ex);
296
throw new ContentGenerationException($"Error while processing file {sourceFile.
FullPath
}", ex);
Microsoft.TemplateEngine.Edge (4)
Mount\Archive\ZipFileDirectory.cs (3)
26
return _mountPoint.Universe.Values.Where(x => x.
FullPath
.StartsWith(FullPath, StringComparison.Ordinal) && x.
FullPath
.Length != FullPath.Length && r.IsMatch(x.Name)).Where(x => searchOption == SearchOption.AllDirectories || x.
FullPath
.TrimEnd('/').Count(y => y == '/') == FullPath.Count(y => y == '/'));
Mount\Archive\ZipFileMountPoint.cs (1)
67
universe[path] = parentDirEntry = new ZipFileDirectory(this, file.
FullPath
, file.Name);
Microsoft.TemplateEngine.Utils (9)
FileSystemInfoExtensions.cs (7)
49
string fullPath = info.
FullPath
.CombinePaths(path);
55
string fullPath = info.
FullPath
.CombinePaths(path);
61
string fullPath = info.
FullPath
.CombinePaths(path);
73
return info.
FullPath
;
77
Dictionary<string, int> sourceSegments = new Dictionary<string, int> { { relTo.
FullPath
, 0 } };
82
sourceSegments[current.
FullPath
] = ++index;
95
while (current != null && !sourceSegments.TryGetValue(current.
FullPath
, out revIndex))
IFileSystemInfoExtensions.cs (2)
26
result = Path.Combine(fileSystemInfo.MountPoint.MountPointUri, fileSystemInfo.
FullPath
.Trim('/', '\\'));
31
result = $"{fileSystemInfo.MountPoint.MountPointUri}({fileSystemInfo.
FullPath
})";