本文简要介绍ruby语言中 File.extname
的用法。
用法
extname(path) → string
返回扩展名(path
中从最后一个句点开始的文件名部分)。
如果path
是点文件,或以句点开头,则不处理扩展名的开头。
当句点是 path
中的最后一个字符时,也会返回一个空字符串。
在 Windows 上,尾随点被截断。
File.extname("test.rb") #=> ".rb"
File.extname("a/b/d/test.rb") #=> ".rb"
File.extname(".a/b/d/test.rb") #=> ".rb"
File.extname("foo.") #=> "" on Windows
File.extname("foo.") #=> "." on non-Windows
File.extname("test") #=> ""
File.extname(".profile") #=> ""
File.extname(".profile.sh") #=> ".sh"
相关用法
- Ruby File.expand_path用法及代码示例
- Ruby File.identical?用法及代码示例
- Ruby File.dirname用法及代码示例
- Ruby File.directory?用法及代码示例
- Ruby File.link用法及代码示例
- Ruby File.lstat用法及代码示例
- Ruby File.umask用法及代码示例
- Ruby File.absolute_path?用法及代码示例
- Ruby File.rename用法及代码示例
- Ruby File.split用法及代码示例
- Ruby File.chmod用法及代码示例
- Ruby File.atime用法及代码示例
- Ruby File.to_path用法及代码示例
- Ruby File.stat用法及代码示例
- Ruby File.chown用法及代码示例
- Ruby File.path用法及代码示例
- Ruby File.absolute_path用法及代码示例
- Ruby File.mtime用法及代码示例
- Ruby File.fnmatch用法及代码示例
- Ruby File.build用法及代码示例
- Ruby File.ftype用法及代码示例
- Ruby File.join用法及代码示例
- Ruby File.readlink用法及代码示例
- Ruby File.new用法及代码示例
- Ruby File.world_writable?用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 File.extname。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。