#include <unistd.h>
#include <fcntl.h>
int fcntl(int fd, int cmd, ...); // arg
参数:
fd : 需要操作的文件描述符
cmd: 对文件描述符如何操作
- F_DUPFD 复制文件描述符 ,返回一个新的文件描述符
int ret = fcntl(fd, F_DUPFD);
- F_GETFL 获取指定的文件描述符文件状态 flag
获取的flag和通过open函数传递的flag是一个东西
- F_SETFL 设置文件描述符文件状态flag
必选 : O_RDONLY, O_WRONLY, O_RDWR 不可修改
可选 : O_APPEND(追加数据), O_NONBLOCK(非阻塞)
阻塞与非阻塞: 描述的是函数调用的行为
实例:为文件追加状态
fcntl.c
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
int main(int argc, char const *argv[])
{
int fd = open("a.txt", O_RDWR);
if (fd == -1)
{
perror("open err");
return -1;
}
//复制文件描述符
// int ret = fcntl(fd,F_DUPFD);
//修改或者获取文件状态FLAG
int flag = fcntl(fd, F_GETFL);
//加入O_APPEND标记
flag |= O_APPEND;
int ret = fcntl(fd, F_SETFL, flag);
if (ret == -1)
{
perror("fcntl err");
return -1;
}
char *str = "\nnihao";
write(fd, str, strlen(str));
close(fd);
return 0;
}
标签:fcntl,19,描述符,int,flag,fd,Linux,include
From: https://www.cnblogs.com/anqwjoe/p/16793209.html