Unix VPS A - Starter B - Basic C - Preferred D - Commercial MPS - Dedicated * Sign Up! *
Support Customer Portal Contact Us Online Help Handbooks Domain Status Man Pages
FAQ Virtual Servers Pricing Billing Technical
Network Facilities Connectivity Topology Map
Miscellaneous Server Agreement Year 2038 Credits
creat — create a new file
creat
Standard C Library (libc, -lc)
#include <fcntl.h>
int creat(const char *path, mode_t mode);
open(2).
The creat() function is the same as:
open(path, O_CREAT | O_TRUNC | O_WRONLY, mode);
open(2)
The creat() function appeared in Version 1 AT&T UNIX.
Visit the GSP FreeBSD Man Page Interface.Output converted with ManDoc.