-
Notifications
You must be signed in to change notification settings - Fork 13.3k
add file_suffix method to std::path #97134
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Conversation
Hey! It looks like you've submitted a new PR for the library teams! If this PR contains changes to any Examples of
|
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @joshtriplett (or someone else) soon. Please see the contribution instructions for more information. |
I can write tests if this implementation is approved in #86319 |
Triage: |
☔ The latest upstream changes (presumably #102097) made this pull request unmergeable. Please resolve the merge conflicts. |
This seems fine to me as a companion to Please do rebase and add tests. |
@EvanCarroll ☝️ |
ping from triage - can you post your status on this PR? There hasn't been an update in a few months. Thanks! FYI: when a PR is ready for review, send a message containing |
Sorry, I forgot about this thanks for the ping I'll give it a go. |
Ping from triage: I'm closing this due to inactivity, Please reopen when you are ready to continue with this. @rustbot label: +S-inactive |
This adds
file_suffix
as suggested in #86319.file_prefix
was added in #85166.I wanted the
file_suffix
to be everything that's NOT thefile_prefix
.For
foo.tar.gz
,foo
is thefile_prefix
..tar.gz
is thefile_suffix
.