chdir() 可以接受相对路径吗?

发布于 2024-10-17 09:36:31 字数 37 浏览 5 评论 0原文

在Linux上的C中,chdir()函数可以接受相对路径吗?

In C on linux, can the chdir() function accept a relative path?

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

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

发布评论

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

评论(1

北方的韩爷 2024-10-24 09:36:31

是的。当前工作目录是进程的一个属性。


为了稍微扩展一下 - 这里有一些相关的 POSIX 定义:

这看起来有点循环,但是在参数 chdir() 的上下文中“路径名”没有什么特别的;它像平常一样受到路径名解析的影响。

Yes. The current working directory is a property of the process.


To expand on that a little - here are a couple of the relevant POSIX definitions:

  • The current working directory is defined as "a directory, associated with a process, that is used in pathname resolution for pathnames that do not begin with a slash character" (there is more detail in the section on pathname resolution).

  • chdir() is defined to set the current working directory to a pathname.

It seems somewhat circular, but there is nothing special about a "pathname" in the context of the argument chdir(); it is subject to pathname resolution as normal.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文