gpt4 book ai didi

c++ - 如何使用 C++ 删除目录及其中的所有文件?

转载 作者:行者123 更新时间:2023-11-28 08:16:50 27 4
gpt4 key购买 nike

如何删除目录中的所有文件?我使用了 rmdir 和互联网上建议的其他方法,但没有人帮助我:这是其中之一:(我想删除当前工作目录中的目录 tmp)

removeDir()
{
char currentPath[_MAX_PATH];
GetCurrentPath(currentPath);
std::string tmp(currentPath);

string path = tmp + "\\temp";


std::string command = "del ";
std::string Path = path + "1.txt";
cout << Path << endl;
system(command.append(Path).c_str());
}

GetCurrentPath(char* buffer)
{
getcwd(buffer, _MAX_PATH);
}

最佳答案

关于c++ - 如何使用 C++ 删除目录及其中的所有文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7457100/

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