- 论坛徽章:
- 0
|
在《UNIX系统编程》书中说,creat系统调用总是以只写方式打开文件,一个程序不能用creat创建一个文件后,先把数据写入文件,再从中读取数据,除非关闭这个文件后重新打开。可我在linux中发现不是这样的。是不是linux中更改了?
程序:
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
main()
{
int filedes;
if((filedes = creat("newfile2",0644)) == -1){
printf("Could't create newfies2.\n");
exit(1);
}
if(open("newfile2",O_WRONLY) == -1)
printf("Could't open with write mode.\n");
else
printf("Open successfuly with write mode.\n");
if(open("newfile2",O_RDONLY) == -1)
printf("Could't open with read mode.\n");
else
printf("Open successfully with read mode.\n");
exit(0);
}
~ |
|