Add Directory.CreateTempSubdirectory
CreateTempSubdirectory will create a new uniquely named directory under the temp directory. This allows applications to write temporary files in a co-located directory.
Contributes to #72881
Note: I've decided not to implement the full approved API in #72881 because of the feedback on the File API. That will be added in a future PR.
Note regarding the new-api-needs-documentation label:
This serves as a reminder for when your PR is modifying a ref *.cs file and adding/modifying public APIs, to please make sure the API implementation in the src *.cs file is documented with triple slash comments, so the PR reviewers can sign off that change.
Tagging subscribers to this area: @dotnet/area-system-io See info in area-owners.md if you want to be subscribed.
Issue Details
CreateTempSubdirectory will create a new uniquely named directory under the temp directory. This allows applications to write temporary files in a co-located directory.
Contributes to #72881
Note: I've decided not to implement the full approved API in #72881 because of the feedback on the File API. That will be added in a future PR.
| Author: | eerhardt |
|---|---|
| Assignees: | - |
| Labels: |
|
| Milestone: | - |
I have responded to all existing feedback and pushed new changes. PTAL.