c++ windows下创建文件夹和删除文件夹
摘要:
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如果文件夹下面有文件也不会删除文件夹 阅读全文
posted @ 2012-12-22 20:26 c_dragon 阅读(4855) 评论(0) 推荐(0) 编辑