gpt4 book ai didi

c++ - win32 CopyFile 有跨平台版本吗?

转载 作者:太空宇宙 更新时间:2023-11-04 16:28:36 26 4
gpt4 key购买 nike

如果我需要,我想我可以使用流编写我自己的版本,但这似乎是一个基本的功能,应该存在于某个地方。

最佳答案

boost::filesystem 库包含一个copy_file 函数。它被记录在案 at the boost website.

可以这样用

#include <string>
#include <boost/filesystem.hpp>

std::string sourcePath = "./sourceFile.txt";
std::string destPath = "./destFile.txt";
boost::filesystem::copy_file(sourcePath, destPath, boost::filesystem::copy_option::overwrite_if_exists);

关于c++ - win32 CopyFile 有跨平台版本吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9590814/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com