c++ 流傳輸

頭文件: #include <fstream> 打開流: ifstream input("in.txt",ios::in|ios::binary); ofstream output("out.txt", ios::out | ios::binary); 獲取文件大小: input.seekg(0, std::ios_base::end); int sp = input.tellg(); 傳文件:
相關文章
相關標籤/搜索