计算相对文件的父文件

发布于 2024-10-14 05:23:33 字数 256 浏览 0 评论 0原文

因此,假设一个相对 URI

../file.ext

父级是

../

../../file.ext

如果是第一个,那么父级是什么

../

,它是第二个,如果重复调用假设的 getParent 方法,什么会终止潜在的无限循环?

So assuming a relative URI

../file.ext

Would the parent be

../

or

../../file.ext

If its the first, then what's the parent of

../

and it's the second, what would terminate a potentially infinite cycle if one were to repeatedly call a hypothetical getParent method upon it?

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

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

发布评论

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

评论(1

×纯※雪 2024-10-21 05:23:33

给定一个“当前目录”,

/you/are/here/

然后 ../file.ext 将是

/you/are/file.ext

,并且 ../../file.ext 将被

/you/file.ext

给定一个 getParent() 函数,当它到达文件系统的顶层时它必须停止。通过查看 ... 的 inode 编号来检查这一点很简单。如果它们匹配,则您位于树的顶部。根据定义,在树的顶部执行“..”只会再次返回树的顶部。

Given a "current directory" of

/you/are/here/

then ../file.ext will be

/you/are/file.ext

and ../../file.ext will be

/you/file.ext

Given a getParent() function, it'd have to stop when it reaches the top level of the filesystem. That's trivial to check for by looking at the inode numbers of . and ... If they match, you're at the top of the tree. By definition, doing '..' at the top of the tree will just return the top of the tree again.

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