Как я могу удалить все файлы в каталоге? Я использовал 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);
}