读书人

linux有类似于vc的SetCurrentDirect

发布时间: 2012-03-22 17:43:57 作者: rapoo

linux,有类似于vc的SetCurrentDirectory函数吗?
如运行绝对路径/home/MyFolder/MyApp.out

在MyApp中代码mkdir( "LOG ",...),会将LOG创建在当前目录,我想创建在/home/MyFolder下,有SetCurrentDirectory函数吗?

[解决办法]
#include <unistd.h>
int chdir(const char *path);

[解决办法]
你在创建文件时写全路径名嘛。

读书人网 >C++

热点推荐