当前位置:   article > 正文

open( ) 函数简介_open函数

open函数

头文件:

#include <fcntl.h>

函数原型:

  1. int open( const char * pathname, int flags);
  2. 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

代码示例:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include<fcntl.h>
  4. int main()
  5. {
  6. int fp;
  7. char *path="C:/Desktop/test.txt";
  8. fp = open(path,O_RDONLY);
  9. if (fp<0) printf("打开文件失败\n");
  10. else printf("文件描述符fp=%d\n",fp);
  11. system("pause");
  12. return 0;
  13. }

运行结果:

  1. 文件描述符fp=3
  2. 请按任意键继续. . .

总结open函数 是linux的系统调用,用于非缓冲文件读写等操作。通常用来打开一些设备文件。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/278398
推荐阅读
相关标签
  

闽ICP备14008679号