<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="../img_css/router.css">
<title>open</title>
<script language="JavaScript"><!--
function Click(){ window.event.returnValue=false;}
document.oncontextmenu=Click;
function doRefresh()
{location.href="flux.htm"; return true;}
--></script>
</head>
<body onselectstart="return false">
<form name=form action="SpecialApp.htm" enctype="multipart/form-data" method="get">
<div align="center">
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0" id="table36">
<tr>
<td width="12" height="13">
<img src="../img_css/frame6.gif" width="12" height="13"></td>
<td width="473" background="../img_css/frame7.gif">
<img src="d/tm.gif" width="1" height="1"></td>
<td align="right" width="14">
<img src="../img_css/frame9.gif" width="14" height="13"></td>
</tr>
</table>
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0" id="table40">
<tr>
<td background="../img_css/frame10.gif" width="12"> </td>
<td width="40">
<div align="left"> </div>
</td>
<td>
...open</td>
<td background="../img_css/frame11.gif" width="14"> </td>
</tr>
</table>
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0" id="table39">
<tr>
<td background="../img_css/frame10.gif" width="12"> </td>
<td>
<div align="center">
<img border="0" src="../img_css/line.JPG" width="406" height="7"></div>
</td>
<td background="../img_css/frame11.gif" width="14"> </td>
</tr>
</table>
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0" id="table34">
<tr>
<td background="../img_css/frame10.gif" width="12"> </td>
<td>
<table width="400" border="0" align="center" class="space" id="table35">
<tr><td align="right" width="398">
<p align="left">open(打开文件)<br>
相关函数 read,write,fcntl,close,link,stat,umask,unlink,fopen<br>
表头文件 #include<sys/types.h><br>
#include<sys/stat.h><br>
#include<fcntl.h><br>
定义函数 int open( const char * pathname, int flags);<br>
int open( const char * pathname,int flags, mode_t mode);<br>
函数说明 参数pathname 指向欲打开的文件路径字符串。下列是参数flags 所能使用的旗标:<br>
O_RDONLY 以只读方式打开文件<br>
O_WRONLY 以只写方式打开文件<br>
O_RDWR 以可读写方式打开文件。上述三种旗标是互斥的,也就是不<br>
可同时使用,但可与下列的旗标利用OR(|)运算符组合。<br>
O_CREAT 若欲打开的文件不存在则自动建立该文件。<br>
O_EXCL 如果O_CREAT 也被设置,此指令会去检查文件是否存在。文<br>
件若不存在则建立该文件,否则将导致打开文件错误。此外,若<br>
O_CREAT与O_EXCL同时设置,并且欲打开的文件为符号连接,则会打<br>
开文件失败。<br>
O_NOCTTY 如果欲打开的文件为终端机设备时,则不会将该终端机当<br>
成进程控制终端机。<br>
O_TRUNC 若文件存在并且以可写的方式打开时,此旗标会令文件长<br>
度清为0,而原来存于该文件的资料也会消失。<br>
O_APPEND 当读写文件时会从文件尾开始移动,也就是所写入的数据<br>
会以附加的方式加入到文件后面。<br>
O_NONBLOCK 以不可阻断的方式打开文件,也就是无论有无数据读取<br>
或等待,都会立即返回进程之中。<br>
O_NDELAY 同O_NONBLOCK。<br>
O_SYNC 以同步的方式打开文件。<br>
O_NOFOLLOW 如果参数pathname 所指的文件为一符号连接,则会令<br>
打开文件失败。<br>
O_DIRECTORY 如果参数pathname 所指的文件并非为一目录,则会令<br>
打开文件失败。<br>
此为Linux2.2以后特有的旗标,以避免一些系统安全问题。参数<br>
mode 则有下列数种组合,只有在建立新文件时才会生效,此外真正<br>
建文件时的权限会受到umask值所影响,因此该文件权限应该为<br>
(mode-umaks)。<br>
S_IRWXU00700 权限,代表该文件所有者具有可读、可写及可执行的<br>
权限。<br>
S_IRUSR 或S_IREAD,00400权限,代表该文件所有者具有可读取的<br>
权限。<br>
S_IWUSR 或S_IWRITE,00200 权限,代表该文件所有者具有可写入<br>
的权限。<br>
S_IXUSR 或S_IEXEC,00100 权限,代表该文件所有者具有可执行的<br>
权限。<br>
S_IRWXG 00070权限,代表该文件用户组具有可读、可写及可执行的<br>
权限。<br>
S_IRGRP 00040 权限,代表该文件用户组具有可读的权限。<br>
S_IWGRP 00020权限,代表该文件用户组具有可写入的权限。<br>
S_IXGRP 00010 权限,代表该文件用户组具有可执行的权限。<br>
S_IRWXO 00007权限,代表其他用户具有可读、可写及可执行的权<br>
限。<br>
S_IROTH 00004 权限,代表其他用户具有可读的权限<br>
S_IWOTH 00002权限,代表其他用户具有可写入的权限。<br>
S_IXOTH 00001 权限,代表其他用户具有可执行的权限。<br>
返回值 若所有欲核查的权限都通过了检查则返回0 值,表示成功,只要有<br>
一个权限被禁止则返回-1。<br>
错误代码 EEXIST 参数pathname 所指的文件已存在,却使用了O_CREAT和<br>
O_EXCL旗标。<br>
EACCESS 参数pathname所指的文件不符合所要求测试的权限。<br>
EROFS 欲测试写入权限的文件存在于只读文件系统内。<br>
EFAULT 参数pathname指针超出可存取内存空间。<br>
EINVAL 参数mode 不正确。<br>
ENAMETOOLONG 参数pathname太长。<br>
ENOTDIR 参数pathname不是目录。<br>
ENOMEM 核心内存不足。<br>
ELOOP 参数pathname有过多符号连接问题。<br>
EIO I/O 存取错误。<br>
附加说明 使用access()作用户认证方面的判断要特别小心,例如在access()<br>
后再作open()空文件可能会造成系统安全上的问题。<br>
</td>
</tr>
</table>
</td>
<td background="../img_css/frame11.gif" width="14"> </td>
</tr>
<tr>
<td width="12"><img src="../img_css/frame12.gif" width="12" height="15"></td>
<td background="../img_css/frame14.gif">
<img src="../img_css/frame13.gif" width="3" height="15"></td>
<td width="14"><img src="../img_css/frame15.gif" width="14" height="15"></td>
</tr>
</table>
<br>
<span style="font-size: 9pt">
<a href="mailto:linhan.cn@163.com">Linhan</a> 2005 ShenZhen</span><br>
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0" id="table44">
<tr>
<td width="12" height="13">
<img src="../img_css/frame6.gif" width="12" height="13"></td>
<td width="474" background="../img_css/frame7.gif">
<img src="d/tm.gif" width="1" height="1"></td>
<td align="right" width="14">
<img src="../img_css/frame9.gif" width="14" height="13"></td>
</tr>
<tr>
<td background="../img_css/frame10.gif"> </td>
<td width="474">
<table width="400" border="0" align="center" class="space" id="table45">
<tr><td align="right" width="398">
<p align="left">范例:</p>
<p align="left">#include<unistd.h><br>
#include<sys/types.h><br>
#include<sys/stat.h><br>
#include<fcntl.h><br>
main()<br>
{<br>
int fd,size;<br>
char s [ ]=”Linux Programmer!\n”,buffer[80];<br>
fd=open(“/tmp/temp”,O_WRONLY|O_CREAT);<br>
write(fd,s,sizeof(s));<br>
close(fd);<br>
fd=open(“/tmp/temp”,O_RDONLY);<br>
size=read(fd,buffer,sizeof(buffer));<br>
close(fd);<br>
printf(“%s”,buffer);<br>
}<br>
执行 Linux Programmer!</p></td>
</tr>
</table>
</td>
<td background="../img_css/frame11.gif"> </td>
</tr>
<tr>
<td><img src="../img_css/frame12.gif" width="12" height="15"></td>
<td background="../img_css/frame14.gif">
<img src="../img_css/frame13.gif" width="3" height="15"></td>
<td><img src="../img_css/frame15.gif" width="14" height="15"></td>
</tr>
</table>
</div>
</form>
</body>
</html>
评论0