替换已弃用的 boost 文件系统initial_path

发布于 2024-11-09 09:12:32 字数 240 浏览 0 评论 0原文

就像标题所说,我正在寻找一种方法来执行initial_path()。 正如您在这里看到的,没有替代品: http://www.boost.org/doc /libs/1_46_0/libs/filesystem/v3/doc/deprecated.html

Like the title says I'm in a search for a way to do to do the initial_path().
As you can see here there is no replacement:
http://www.boost.org/doc/libs/1_46_0/libs/filesystem/v3/doc/deprecated.html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

薄凉少年不暖心 2024-11-16 09:12:32

为什么不自己用一些变量来记住它呢?为什么需要提升来解决这个问题?正如他们在文档中所说,这是由用户轻松处理的。

Why not just remember it yourself with some variable? Why do you need boost to take care of this? As they say in the docs, this is trivially taken care of by the user.

維他命╮ 2024-11-16 09:12:32

您是否正在寻找一种获取可执行文件的完整路径的方法?

阅读这个SO问题

我认为答案如下(感谢迈克)

Here's code to get the full path to the executing app:

Windows:

int bytes = GetModuleFileName(NULL, pBuf, len);
if(bytes == 0)
        return -1;
else
        return bytes;

Linux:

char szTmp[32];
sprintf(szTmp, "/proc/%d/exe", getpid());
int bytes = MIN(readlink(szTmp, pBuf, len), len - 1);
if(bytes >= 0)
        pBuf[bytes] = '\0';
return bytes;

Are you looking for a way to get full path to your executable ?

Read this SO question

I think the answer is as below (thanks to Mike)

Here's code to get the full path to the executing app:

Windows:

int bytes = GetModuleFileName(NULL, pBuf, len);
if(bytes == 0)
        return -1;
else
        return bytes;

Linux:

char szTmp[32];
sprintf(szTmp, "/proc/%d/exe", getpid());
int bytes = MIN(readlink(szTmp, pBuf, len), len - 1);
if(bytes >= 0)
        pBuf[bytes] = '\0';
return bytes;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文