Skip to content

Commit d274a4a

Browse files
committed
C#: Try with Path.Combine instead.
1 parent 8d75a19 commit d274a4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/DependencyDirectory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public DependencyDirectory(string subfolderName, string userReportedDirectoryPur
3535
path = FileUtils.GetTemporaryWorkingDirectory(out _);
3636
attemptCleanup = true;
3737
}
38-
DirInfo = new DirectoryInfo(Path.Join(path, subfolderName));
38+
DirInfo = new DirectoryInfo(Path.Combine(path, subfolderName));
3939
DirInfo.Create();
4040
}
4141

0 commit comments

Comments
 (0)