码迷,mamicode.com
首页 > 其他好文 > 详细

fd (int)读写文件

时间:2019-12-10 01:06:16      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:读写   test   sdn   turn   pre   har   detail   ==   int   

#include <string.h>
#include <stdio.h>
#include <fcntl.h>
int main()
{
  char *p1 = "This is a c test code";
  volatile int len = 0;
 
  int fp = open("/home/test.txt", O_RDWR|O_CREAT);
  for(;;)
  {
     int n;
 
     if((n=write(fp, p1+len, (strlen(p1)-len)))== 0)   //if((n=write(fp, p1+len, 3)) == 0) 
     {                                                 //strlen(p1) = 21
         printf("n = %d \n", n);
         break;
     }
     len+=n;
  }
  return 0;
}
 

  原文链接:https://blog.csdn.net/hhhlizhao/article/details/71552588

fd (int)读写文件

标签:读写   test   sdn   turn   pre   har   detail   ==   int   

原文地址:https://www.cnblogs.com/hshy/p/12014215.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!