Documentation ¶
Overview ¶
Package sys contains non-portable routines.
Index ¶
Constants ¶
const ( DefaultUid = "" DefaultGid = "" )
DefaultUid and DefaultGid are the default group and owner for a file if ownership information cannot be retrieved.
Variables ¶
This section is empty.
Functions ¶
func FileOwner ¶
FileOwner retrieves ownership information for a file. uid and gid are the owner and group of a file, respectively. muid is the uid of the user who last modified the file.
FileOwner will emply multiple strategies to get file ownership information. If fi or fi.Sys() implements any methods in the styx.OwnerInfo interface, they are used. Otherwise, FileOwner will attempt to retrieve ownership information from the host operating sytsem. If such information cannot be retrieved, FileOwner will fall back to DefaultUid and DefaultGid.
Types ¶
This section is empty.