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