[Overview][Constants][Types][Procedures and functions][Variables] | Reference for unit 'oldlinux' (#rtl) |
Set file creation mask.
Source position: oldlinux.pp line 1401
function Umask( |
Mask: Integer |
):Integer; |
Change the file creation mask for the current user to Mask. The current mask is returned.
|
Change file permission bits |
Program Example27; { Program to demonstrate the Umask function. } Uses oldlinux; begin Writeln ('Old Umask was : ',Umask(Octal(111))); WRiteln ('New Umask is : ',Octal(111)); end.
No notes exist for this page yet.