将
Linux工具移植到Windows时出现问题.我在Windows系统上使用MinGW.我有一个处理所有输入/输出的类,这里是:
@H_301_2@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
任何想法,我可以做什么,以便它在两个系统上工作?
解决方法
@H_301_2@#if defined(_WIN32)
_mkdir(strPath.c_str());
#else
mkdir(strPath.c_str(),0777); // notice that 777 is different than 0777
#endif