open( ) 函数简介
·
头文件:
#include <fcntl.h>
函数原型:
int open( const char * pathname, int flags);
int open( const char * pathname, int flags, mode_t mode);
功能:
打开文件。
返回值:
打开成功:返回一个int 型正整数(文件描述符);
打开失败:返回 -1;
参数说明:
pathname 指向文件路径的字符指针;
flags 文件打开方式 常用选项是:O_RDONLY(只读);O_WRONLY(只写); O_RDWR(可读写); O_CREAT:文件不存在时,创建该文件, 文件的权限由第三个参数mode决定最终的权限。
mode 当flags选项是O_CREAT时,需要使用mode指定文件权限。例如:777 指定文件拥有者,群组用户及其他用户都拥有对文件的读写执行权限。其他相关权限可查阅:http://t.csdn.cn/O0K3p
代码示例:
#include <stdio.h>
#include <stdlib.h>
#include<fcntl.h>
int main()
{
int fp;
char *path="C:/Desktop/test.txt";
fp = open(path,O_RDONLY);
if (fp<0) printf("打开文件失败\n");
else printf("文件描述符fp=%d\n",fp);
system("pause");
return 0;
}
运行结果:
文件描述符fp=3
请按任意键继续. . .
总结:open函数 是linux的系统调用,用于非缓冲文件读写等操作。通常用来打开一些设备文件。
更多推荐
已为社区贡献1条内容
所有评论(0)