15 references to Join
Microsoft.Private.Windows.Polyfills.Tests (5)
System\IO\PathExtensionsTests.cs (5)
60string result = Path.Join("dir".AsSpan(), "file.txt".AsSpan()); 67string result = Path.Join(ReadOnlySpan<char>.Empty, "file.txt".AsSpan()); 74string result = Path.Join("dir".AsSpan(), ReadOnlySpan<char>.Empty); 81string result = Path.Join(ReadOnlySpan<char>.Empty, ReadOnlySpan<char>.Empty); 88string result = Path.Join(@"dir\".AsSpan(), "file.txt".AsSpan());
System.Formats.Tar (1)
src\libraries\Common\src\System\IO\PathInternal.cs (1)
242Path.Join(Path.GetDirectoryName(path.AsSpan()), pathToTarget.AsSpan()) : pathToTarget;
System.IO.FileSystem.Watcher (1)
src\libraries\Common\src\System\IO\PathInternal.cs (1)
242Path.Join(Path.GetDirectoryName(path.AsSpan()), pathToTarget.AsSpan()) : pathToTarget;
System.Private.CoreLib (7)
src\libraries\Common\src\System\IO\PathInternal.cs (1)
242Path.Join(Path.GetDirectoryName(path.AsSpan()), pathToTarget.AsSpan()) : pathToTarget;
src\libraries\System.Private.CoreLib\src\System\Environment.GetFolderPathCore.Unix.cs (1)
236Path.Join(homeDir, line.AsSpan(pos, endPos - pos)) :
src\libraries\System.Private.CoreLib\src\System\IO\Enumeration\FileSystemEnumerableFactory.cs (1)
52directory = Path.Join(directory.AsSpan(), directoryName);
src\libraries\System.Private.CoreLib\src\System\IO\Enumeration\FileSystemEnumerator.Unix.cs (1)
158_pending.Enqueue((Path.Join(_currentPath, entry.FileName), _remainingRecursionDepth - 1));
src\libraries\System.Private.CoreLib\src\System\IO\Path.cs (3)
459return Join(path2, path3); 462return Join(path1, path3); 465return Join(path1, path2);
System.Windows.Forms (1)
System\Windows\Forms\Dialogs\CommonDialogs\FileDialog.cs (1)
474: Path.Join(directory, fileName));