| [Overview][Constants][Types][Procedures and functions][Index] | 
Set file creation mask.
Source position: bunxh.inc line 31
| function FpUmask( | 
| cmask: TMode | 
| ):TMode; | 
fpUmask changes the file creation mask for the current user to cmask. The current mask is returned.
| 
 | Change file permission bits | 
Program Example27; { Program to demonstrate the Umask function. } Uses BaseUnix; begin Writeln ('Old Umask was : ',fpUmask(&111)); WRiteln ('New Umask is : ',&111); end.