如何刪除目錄中的所有文件?我用命令rmdir並在互聯網上提出其他方法,但是沒有一個人幫我:這就是其中之一:(我想刪除tmp目錄在當前工作目錄)如何用C++刪除目錄及其中的所有文件?
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);
}
OP詢問目錄 – fazo
-1,沒有做什麼要求。 – MSalters
OP和我顯然講一種祕密語言,因爲他接受:) – JAM