Uh oh!
There was an error while loading. Please reload this page.
Refactor repeated invalid character checks in Path.GetFullPath Unix and Windows - #56568
Conversation
ghost
commented
Jul 29, 2021
Tagging subscribers to this area: @dotnet/area-system-io Issue DetailsSummaryWhere paths were checked to not be null, empty, or otherwise invalid, calls to Fixes #54993
|
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
jeffhandley
commented
Aug 3, 2021
/azp run runtime |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
jkotas
commented
Aug 5, 2021
@stephentoub Looks good? |
stephentoub
commented
Aug 5, 2021
/azp run |
|
You have several pipelines (over 10) configured to build pull requests in this repository. Specify which pipelines you would like to run by using /azp run [pipelines] command. You can specify multiple pipelines using a comma separated list. |
stephentoub
commented
Aug 5, 2021
/azp list |
steveberdy
commented
Aug 6, 2021
Good to merge? |
stephentoub
commented
Aug 6, 2021
System.Net.Security test failure is unrelated. |
Summary
There were repeated, expensive checks on paths in the
Path.GetFullPathmethod. This has been refactored with aGetFullPathInternalmethod that contains the shared code between the methods. These repetitions were found on both the Windows and Unix sides, and thus implementations of theGetFullPathInternalmethod were written for both.Intended to extend PR #55373
Fixes#54993