chdir() 可以接受相对路径吗?
在Linux上的C中,chdir()函数可以接受相对路径吗?
In C on linux, can the chdir() function accept a relative path?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在Linux上的C中,chdir()函数可以接受相对路径吗?
In C on linux, can the chdir() function accept a relative path?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
是的。当前工作目录是进程的一个属性。
为了稍微扩展一下 - 这里有一些相关的 POSIX 定义:
当前工作目录被定义为“一个目录,与一个进程,用于解析不以斜杠字符开头的路径名”(路径名解析)。
chdir()
已定义将当前工作目录设置为路径名。这看起来有点循环,但是在参数
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.