文件名中的点之前,它叫什么?
文件名中的点之后,称为扩展名。
After-the-dot-in-a-file-name, it is called extension.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
文件名中的点之后,称为扩展名。
After-the-dot-in-a-file-name, it is called extension.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(10)
它被称为基本名称。 事实上,有一个 unix/linux 命令:
It's called the basename. In fact, there's a unix/linux command for it:
“基本名称”、“基本名称”、“主名称”、“文件名”、“文件名”或“文件”。
The "base name," "basename," "primary name," "filename," "file name," or the "file."
基本名称或文件名。
Base name or file name.
Ruby 将其称为基本名称。 这是一个很好、简洁的名字,我通常也在其他环境中使用。
Ruby calls it the basename. That's a good, succinct name that I generally go with in other environments too.
基本名称或主文件名。
Basename or primary file name.
我称之为文件名。 所以它就像 Filename.ext
I call it filename. So its like Filename.ext
我总是将点和扩展名之前的所有内容称为“文件名”。
I've always called the everything before the dot and the extension the "file name".
我不是 Ruby 或 Linux 爱好者,所以我想我错过了 BaseName 的事情。 它引起了各种有趣的命名约定的欢闹。 我在营地
,尽管那也可以是文件名。 (或者可能是 FileNameWithExtension)。
I'm not a Ruby or Linux guy, so I guess I missed the BaseName thing. It makes for all sorts of interesting naming convention hilarity. I'm in the
camp, although that, too can be a FileName. (or maybe a FileNameWithExtension).
曾几何时,使用术语 Leafname,尽管它通常包含扩展名。
我提到这一点是为了历史价值,并且由于它已不再使用,因此它可能可以用于此目的。
Once upon a time, the term Leafname was used, although that typically included the extension.
I mention this for historical value, and since its dropped out of usage, it might be redeemable for this purpose.
boost::filesystem 库也将其称为基本名称。
The boost::filesystem library calls it basename as well.