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
We could introduce file permission and owner support via add new service pair and metadata.
permission could be set in open, but uid/gid may need a call to Chown.
permission
open
uid
gid
Chown
uint32
Write
We could extract following metadata from f.Sys().(*syscall.Stat_t) (unix only)
f.Sys().(*syscall.Stat_t)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We could introduce file permission and owner support via add new service pair and metadata.
Proposal
Pair
permission
could be set inopen
, butuid
/gid
may need a call toChown
.permission
:uint32
, The permission of this object (forWrite
related operation)uid
:uint32
, The uid of this objectgid
:uint32
, The gid of this objectMetadata
We could extract following metadata from
f.Sys().(*syscall.Stat_t)
(unix only)permission
:uint32
, The permission of this objectuid
:uint32
, The uid of this objectgid
:uint32
, The gid of this objectRetional
The text was updated successfully, but these errors were encountered: