-
Notifications
You must be signed in to change notification settings - Fork 14.1k
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(windows_freeze_file_times)]
This is a tracking issue for freeze file time on Windows.
Public API
// std::os::windows::fs
pub trait OpenOptionsExt {
/// If set to `true`, prevent the "last access time" of the file from being changed.
///
/// Default to `false`.
fn freeze_last_access_time(&mut self, freeze: bool) -> &mut Self;
/// If set to `true`, prevent the "last write time" of the file from being changed.
///
/// Default to `false`.
fn freeze_last_write_time(&mut self, freeze: bool) -> &mut Self;
}Steps / History
(Remember to update the S-tracking-* label when checking boxes.)
- ACP: Freeze file times on Windows libs-team#708
- Implementation: Add freeze file times on Windows #149718
- 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.