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

文件操作

时间:2015-07-21 16:50:43      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

一:在C语言中关于文件的操作

 

 

二:在UNIX中关于文件的操作

int fd = open("a.txt",O_RDONLY|O_CREAT|O_TUEN,0666);

if (fd == -1)perror("open"),exit(-1);

write(fd,"hello",5);

close(fd);

int  buff[10];

int res = read(fd,buff,sizeof(buff));

printf("res=%d,buff=%s\r\n",res,buff);     //res = 5,buff = hello;

 

文件操作

标签:

原文地址:http://www.cnblogs.com/cliuwei/p/4664802.html

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