表示“目录”的词是什么?或“文件”?

发布于 2024-11-26 22:14:57 字数 295 浏览 0 评论 0原文

我正在尝试命名一个可以是文件或目录的对象。正确的术语是什么?

我考虑过

处理 ->被拒绝,对象不是句柄

地址 ->被拒绝,对象不是地址

对象 ->拒绝,太笼统,应该是更好的术语

当我在第一句话中说“对象”时,我特意谈论了 HTML DOM 中的

,但它可以是任何东西。

用不同的方式提出我的问题,子“文件”和“目录”的父词是什么?例如,foo 可以是文件或目录。

I'm trying to name an object that can be a file or a directory. What's the correct terminology for this?

I've considered

handle -> rejected, object is not a handle

address -> rejected, object is not an address

object -> rejected, too generic, should be better terminology

When I say "object" in my first sentence, I'm specifically talking about a <div> in an HTML DOM, but it could be anything.

To put my question a different way, what's the parent word of the children "file" and "directory"? e.g. a foo can be a file, or a directory.

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

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

发布评论

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

评论(4

分開簡單 2024-12-03 22:14:57

我听说过“文件系统对象”这个短语,尽管说起来很痛苦:)

I've heard the phrase "file system object", although it's painful to say :)

随风而去 2024-12-03 22:14:57

在 Unix 中,我们将任何文件和目录称为inode,因为文件与二进制表示形式的目录没有太大区别。

In Unix we call any file and directory an inode, since a file is not many different from a directory in binary representation.

简美 2024-12-03 22:14:57

所以仅供参考 Java 有一个 File 类,它可以是目录或标准文件。基本上将目录视为文件的特殊情况。 java.io.File 类

另外,您可以采用老方法,将其命名为 AbstractFile。

So just for reference Java has a File class that can be a directory or a standard file. Basically treating a directory as a special case of a file. java.io.File class

Also, you could go old school and just name it AbstractFile.

羅雙樹 2024-12-03 22:14:57

在 Unix 中,一切(目录和文件)都是文件

In Unix, everything -- both a directory and a file -- is a file.

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