#include <fstream>

int main()
{
    std::ifstream  src("from.ogv", std::ios::binary);
    std::ofstream  dst("to.ogv",   std::ios::binary);

    dst << src.rdbuf();
}

相关文章:

  • 2022-12-23
  • 2021-06-01
  • 2022-12-23
  • 2021-06-25
  • 2022-01-16
  • 2022-01-26
  • 2022-12-23
  • 2021-09-07
猜你喜欢
  • 2021-11-07
  • 2022-12-23
  • 2022-12-23
  • 2021-08-22
  • 2021-08-15
  • 2021-12-13
  • 2022-02-03
相关资源
相似解决方案