#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
/***********************
*file:txt_to_txt.c
*author:QG
*time:2015-05-11
*description:read datas from 123.txt,and write those datas to a new txt(234.txt).
**************************/
int main()
{
char *in = "./123.txt";
char *out = "./234.txt";
int fd_in = 0;
int fd_out = 0;
int n_read = 0;
char buf[10];
fd_in = open(in,O_RDONLY);
fd_out = open(out,O_RDWR|O_CREAT|O_TRUNC,0755);
while((n_read = read(fd_in,buf,10)) > 0)
{
if(write(fd_out,buf,n_read) < n_read)
{
close(fd_in);
close(fd_out);
}
}
close(fd_in);
close(fd_out);
return(0);
}
系统调用 8--综合实例(txt_to_txt)
最新推荐文章于 2024-09-05 14:56:55 发布