表示“目录”的词是什么?或“文件”?
我正在尝试命名一个可以是文件或目录的对象。正确的术语是什么?
我考虑过
处理 ->被拒绝,对象不是句柄
地址 ->被拒绝,对象不是地址
对象 ->拒绝,太笼统,应该是更好的术语
当我在第一句话中说“对象”时,我特意谈论了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我听说过“文件系统对象”这个短语,尽管说起来很痛苦:)
I've heard the phrase "file system object", although it's painful to say :)
在 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.所以仅供参考 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.
在 Unix 中,一切(目录和文件)都是文件。
In Unix, everything -- both a directory and a file -- is a file.