linux 应用程序根据相对路径读写文件
fd=open("f2.txt", O_WRONLY|O_CREAT);
printf("%d",write(fd, s, strlen(s)));
fclose(fd);
fp = open("f2.txt",O_CREAT|O_RDONLY,0666);
printf("in child11\n");
printf("%d",read(fp,my,10));
fclose(fp);
由于选择的是相对路径,所以要在cmd中输入vi f2.txt创立文档,便于读写。