Chinaunix首页 | 论坛 | 博客
  • 博客访问: 481253
  • 博文数量: 120
  • 博客积分: 1853
  • 博客等级: 上尉
  • 技术积分: 1177
  • 用 户 组: 普通用户
  • 注册时间: 2011-10-22 22:40
文章分类

全部博文(120)

文章存档

2013年(16)

2012年(104)

分类: C/C++

2012-03-11 22:46:22

#include
#include
#include
#include
#include
#include
int main(int argc,char *argv[])
{
int fd,fd_temp;
int i;
size_t nread, size;
char filename[20]="\0";
char *buf=NULL;
if((fd=open(argv[1],O_RDONLY)) == -1)
{
perror("open:");
exit (1);
}
printf("input the size: ");
scanf("%d",&size);
buf=(char *)malloc(size);
while( (nread=read(fd, buf , size)) > 0)
{
memset(buf, 0, size);
sprintf(filename, "%s%d.txt", argv[1], i++);
if( (fd_temp=open(filename, O_CREAT, 0644)) == -1)
{
perror("open filename");
exit (2);
};
write(fd_temp, buf, nread);
close(fd_temp);
}
free(buf);
close(fd);
return 0;
}
阅读(881) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~