Skip to main content

SYS_UMASK

Constant SYS_UMASK 

Source
pub const SYS_UMASK: usize = 444;
Expand description

Set the file mode creation mask.

  • mask: new umask value (e.g., 0o022)

Returns the previous umask. New files are created with mode & ~umask.