Files
system-programming/chp2/fopenmode.c
2025-06-26 16:11:10 +02:00

16 lines
244 B
C

#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
int main(void)
{
int fd;
fd = open("test.txt", O_CREAT | O_EXCL, S_IWUSR | S_IRUSR | S_IRGRP | S_IROTH);
if (fd == -1)
perror("open");
close(fd);
return 0;
}