- 论坛徽章:
- 0
|
/*
该函数首先是向生成的文件中写入一串字符,然后关闭
在打开文件,将一串字符输出到字符数组中,接着显示
环境:linux(fedora 5)
*/
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
int main(int argc, char * argv[])
{
int fd, size;
char *str = "linux Programming\n";
char buffer[100];
char *filename = "./open2.out";
fd = open(filename, O_WRONLY|O_CREAT);
write(fd, str, strlen(str));
close(fd);
fd = open(filename, O_RDONLY); /*为什么此处运行之后fd的结果是-1*/
size = read(fd, buffer, sizeof(buffer));
close(fd);
printf("the buffer is %s", buffer); /*从而导致该行的输出是“the buffer is ”,而不是所期望的“the buffer is linux Programming”*/
return 0;
} |
|