NX二次开发-创建目录

 1 bool CreateDir(string path)
 2 {
 3     if (path.empty())
 4     {
 5         return false;
 6     }
 7 
 8     CreateDirectory(multiByteToWideChar(path), NULL);
 9 
10     return true;
11 }

 

posted on 2021-02-04 15:51  不再低调  阅读(149)  评论(0编辑  收藏  举报