创建文件目录C++ windows
摘要:
#include #include int main(){ char file[] = "E:\\C1\\ch"; bool flag = CreateDirectory(file,NULL); DWORD err = GetLastError(); std::cout<<"flag: "<<flag<<std::endl; std::cout<<"err: "<<err<<std::endl;... 阅读全文
posted @ 2014-02-27 15:50 nimo299 阅读(358) 评论(0) 推荐(0) 编辑