当前位置: 技术问答>linux和unix
有关read,write,open的用法
来源: 互联网 发布时间:2015-11-23
本文导语: 请问用read,write,open这几个函数要包括那几个头文件? int file_desc; file_desc = open("./boot", O_RDONLY); 以上open的用法对吗? | open: #include #include #include read,write只需要#include 就行了 "./boot"...
请问用read,write,open这几个函数要包括那几个头文件?
int file_desc;
file_desc = open("./boot", O_RDONLY);
以上open的用法对吗?
int file_desc;
file_desc = open("./boot", O_RDONLY);
以上open的用法对吗?
|
open:
#include
#include
#include
read,write只需要#include 就行了
"./boot"是什么?
#include
#include
#include
read,write只需要#include 就行了
"./boot"是什么?
|
man syscalls
找到read, write,open
open(2), write(2), read(2)
然后
man 2 open
man 2 write
man 2 read
找到read, write,open
open(2), write(2), read(2)
然后
man 2 open
man 2 write
man 2 read
|
没问题啊,用法正确
|
The (undefined) effect of O_RDONLY | O_TRUNC various among implementations. On many systems the file is actually truncated.
这是man中些的
这是man中些的
|
aaa告诉你了:
#include
#include
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。