readlink获取当前路径

readlink("/proc/self/exe", buf, count - 1);

 

 

const uint16_t buf_size = 1024;

boost::scoped_array<char> buf(new char[buf_size]);

memset(buf.get(), 0, buf_size);

 

int32_t count = readlink("/proc/self/exe", buf.get(), buf_size);

if ((count < 0) || (count > buf_size)){

std::cerr << "readlink :" << strerror(errno) << std::endl;

exit(1);

}

 

boost::filesystem::path the_path(buf.get());

chdir(the_path.parent_path().string().c_str());

表头文件: #include
定义函数:ssize_t readlink(const char *path, char *buf, size_t bufsiz);
函数说明:readlink()会将参数path的符号链接内容存储到参数buf所指的内存空间,返回的内容不是以\000作字符串结尾,但会将字符串的字符数返回,这使得添加\000变得简单。若参数bufsiz小于符号连接的内容长度,过长的内容会被截断,如果 readlink 第一个参数指向一个文件而不是符号链接时,readlink 设 置errno 为 EINVAL 并返回 -1。 readlink()函数组合了open()、read()和close()的所有操作。
返回值 :执行成功则返回字符串的字符数,失败返回-1, 错误代码存于errno

你可能感兴趣的:(readlink获取当前路径)