We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2a3714 commit c8ca29eCopy full SHA for c8ca29e
libkernel/src/fs/filesystems/ext4/mod.rs
@@ -73,6 +73,9 @@ impl From<Metadata> for FileAttr {
73
mode: FilePermissions::from_bits(meta.mode.bits()).unwrap(),
74
uid: Uid::new(meta.uid),
75
gid: Gid::new(meta.gid),
76
+ atime: meta.atime,
77
+ ctime: meta.ctime,
78
+ mtime: meta.mtime,
79
..Default::default()
80
}
81
0 commit comments