怎么删除文件,怎么直接彻底删除文件( 六 )


#include<iostream>  
using namespace std;

int main()
{
string path = "D:\\1";
mkdir(path.c_str());
return 0;
}

推荐阅读