c – mkdir Windows与Linux

前端之家收集整理的这篇文章主要介绍了c – mkdir Windows与Linux前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Linux工具移植到Windows时出现问题.我在Windows系统上使用MinGW.我有一个处理所有输入/输出的类,这里是:
mkdir(strPath.c_str(),0777); // works on Linux but not on Windows and when it is changed to
_mkdir(strPath.c_str()); // it works on Windows but not on Linux

任何想法,我可以做什么,以便它在两个系统上工作?

解决方法

#if defined(_WIN32)
_mkdir(strPath.c_str());
#else 
mkdir(strPath.c_str(),0777); // notice that 777 is different than 0777
#endif
原文链接:https://www.f2er.com/c/114441.html

猜你在找的C&C++相关文章