We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The most common file time stamps are:
atime
mtime
ctime
crtime
btime
birth
birth time
Internally, Parsec only handles created and updated file timestamps, which makes some timestamps not handled as they should.
created
updated
For example, in Linux:
parsec-cloud/libparsec/crates/platform_mountpoint/src/unix/filesystem.rs
Lines 103 to 106 in 7059f9b
It might make sense to rethink Parsec data model to properly manage the 4 file timestamps instead of created/updated like we do at the moment.
The text was updated successfully, but these errors were encountered:
This was discussed with @vxgmichel in #5694
Sorry, something went wrong.
No branches or pull requests
The most common file time stamps are:
atime
: last access time, updated on file readmtime
: last modified time, updated on file content changectime
: changed time, updated on file metadata changecrtime
(akabtime
,birth
orbirth time
): created time, updated on file creationInternally, Parsec only handles
created
andupdated
file timestamps, which makes some timestamps not handled as they should.For example, in Linux:
parsec-cloud/libparsec/crates/platform_mountpoint/src/unix/filesystem.rs
Lines 103 to 106 in 7059f9b
It might make sense to rethink Parsec data model to properly manage the 4 file timestamps instead of created/updated like we do at the moment.
The text was updated successfully, but these errors were encountered: