int main()
{
int stopaa;
char path[256];
bool bCreate=CreateDirectory(L"abc",NULL);
printf("%d \n",bCreate);
//RemoveDirectory(L"dirtest");
scanf("%d",&stopaa);
return 0;
}
其中 CreateDriectory 如果文件夾已經存在 就不會重新創建了,RemoveDirectory如果文件夾下面有文件也不會刪除文件夾
