-
Notifications
You must be signed in to change notification settings - Fork 13.8k
Open
Labels
C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCS-tracking-unimplementedStatus: The feature has not been implemented.Status: The feature has not been implemented.T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.
Description
Feature gate: #![feature(path_set_times)]
This is a tracking issue for the std::fs::set_times
and std::fs::set_times_nofollow
functions. These functions set the timestamps of a file based on a path rather than an open file descriptor. The latter function sets the timestamps on a symlink rather than the file it links to.
Public API
// std::fs
pub fn set_times<P: AsRef<Path>>(&self, path: P, times: FileTimes) -> io::Result<()>;
pub fn set_times_nofollow<P: AsRef<Path>>(&self, path: P, times: FileTimes) -> io::Result<()>;
Steps / History
(Remember to update the S-tracking-*
label when checking boxes.)
- Implementation: #...
- Final comment period (FCP)1
- Stabilization PR
Unresolved Questions
- None yet.
Footnotes
Metadata
Metadata
Assignees
Labels
C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCS-tracking-unimplementedStatus: The feature has not been implemented.Status: The feature has not been implemented.T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.