复制文件

使用C++标准程序库的输入输出流(I/O   Stream)复制文件,存在许多的方法,

方法一:逐个字符复制
#include   <   fstream   >

std::ifstream   input( "in ",ios::binary);
std::ofstream   output( "out ",ios::binary);
char   ch;

while   (input.get(ch))   output   < <   ch;

注意:如果使用input> > ch读取字符,则必须先调用input.unsetf(ios::skipws)取消输入流默认的跳过空白符的输入格式,因为换行符是空白符的一种。

方法二:逐行复制

#include   <   fstream   >
#include   <   string   >

std::ifstream   input( "in ",ios::binary);
std::ofstream   output( "out ",ios::binary);
std::string   line;

while   (getline(input,line))   output   < <   line   < <   "/n ";

注意:这里的代码有一个小小的缺陷,如果文件不是纯文本格式的文件,或者文本文件的最后没有换行符,那么会导致复制后的文件末尾添加了一个多余的换行符。

方法三:迭代器复制

#include   <   fstream   >
#include   <   iterator   >
#include   <   algorithm   >

std::ifstream   input( "in ",ios::binary);
std::ofstream   output( "out ",ios::binary);
input.unsetf(ios::skipws);

copy(istream_iterator(input),istream_iterator(),ostream_iterator(output, " "));

同样这里也有一个小技巧,输入流的格式默认为跳过空白字符,因此调用unsetf取消这个格式,才可保证正确的复制。

方法四:缓冲区复制

#include   <   fstream   >

std::ifstream   input( "in ",ios::binary);
std::ofstream   output( "out ",ios::binary);

output   < <   input.rdbuf();

这里直接使用了输入流的缓冲区,因此没有引入额外的临时对象。

很显然,上述四种方法中,最后一种方法最简洁,由于直接操作输入流的缓冲区,从运行效率上来说,也比其他方法有着略微的优势(当然,由于操作系统可能提供了额外的基于设备的文件缓冲机制,也许你无法证实这一点)。因此,除非要对输入内容进行处理,直接复制文件推荐最后一种方法,既不容易出错,又能获得良好的性能。

#include   <stdio.h>
int   main(int   argc,   char   *   argv[])
{
int   c,   ret;
char   name1[100],   name2[100];
FILE   *   stream1,   *stream2;
//printf   (   "Input   Source   filename: ");
//scanf   (   "%s ",name1);
//printf   (   "Input   destination   filename: ");
//scanf   ( "%s ",name2);
if   (argc   !=   3)  
{
printf( "The   number   of   arguments   to   copy   is   not   correct!%d ",argc);
exit(-1);
}

strcpy(name1,   argv[1]);
strcpy(name2,   argv[2]);

stream1   =   fopen   (name1,   "r ");   //打开source文件
if   (stream1   ==   NULL)
{
puts( "Cannot   open   read_file/n ");
exit(1);
}

stream2   =   fopen   (name2,   "w ");   //打开destination文件
if   (stream2   ==   NULL)
{
puts( "Cannot   open   write_file/n ");
exit(1);
}

while((c=fgetc(stream1))!=   EOF)   //从src中读取内容
fputc(c,stream2);       //写入目标文件,形式跟putc一样的

fclose(stream1);
fclose(stream2);
printf( "Copy   complete!/n ");

return   0;
}

编译,起个名字叫copy,放到linux的系统目录下,   可以像用cp命令一样用,用copy     ...     ...

^_^
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值