Documentation
¶
Overview ¶
Package fs defines file and directory permission constants.
Index ¶
Constants ¶
View Source
const ( // PermFile is the standard permission for regular files (owner rw, others r). PermFile = 0644 // PermExec is the standard permission for directories and executable files. PermExec = 0755 // PermRestrictedDir is the permission for internal directories (owner rwx, group rx). PermRestrictedDir = 0750 // PermSecret is the permission for secret files (owner rw only). PermSecret = 0600 // PermKeyDir is the permission for the user-level key directory (owner rwx only). PermKeyDir = 0700 )
File permission constants.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.