码迷,mamicode.com
首页 > 系统相关 > 详细

linux文件函数-open

时间:2015-04-27 18:28:30      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:linux      编程   

linux文件函数-open
一 打开文件

函数名:open

函数原形:

int open(const char *pathname, int flags)
int open(const char *pathname, int flags, mode_t mode)

函数功能:打开或者创建一个文件或者设备

所属头文件:

#include<sys/types.h> 

#include<sys/stat.h> 

#include<fcntl.h>

返回值:成功返回文件描述符,失败返回-1

参数说明:

pathname:是要打开文件的路径/home/hello.c

flags:

-O_RDONLY:只读打开

-O_WRONLY:只写打开

-O_RDWR:读和写打开

-O_APPEND:追加

-O_CREAT:文件不存在的时候创建文件,此时应使用mode参数

mode:是在使用-O_CREAT要使用,用于确定创建的文件的权限

linux文件函数-open

标签:linux      编程   

原文地址:http://blog.csdn.net/qq_22075977/article/details/45313419

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!