c++ 文件读写问题
#include<iostream>#include<fstream>
#include<sstream>
using namespace std;
int main()
{
ifstream in("文件名1");
ofstream out("文件名2");
for(string s;getline(in,s);)
out<<s<<endl;
}
这个程序复制txt等简单的文件没问题,但复制mp3,exe,chm之类的文件就不行了
请问这是为什么,如何解决?
另外,最好可以指定每块的大小,相当于把一个大文件分割成若干小文件