您的位置:首页 > 其它

basename/dirname 获取文件名/路径

2014-08-28 17:24 489 查看
http://ruby-doc.org/core-2.1.2/File.html#method-c-dirname

(1)basename(file_name [, suffix] ) → base_name

Returns the last component of the filename given in file_name, which can be formed using both
File::SEPARATOR
and
File::ALT_SEPARATOR
as the separator when
File::ALT_SEPARATOR
is not
nil
. If suffix is given and present at the end of file_name, it is removed.

File.basename("/home/gumby/work/ruby.rb")          #=> "ruby.rb"
File.basename("/home/gumby/work/ruby.rb", ".rb")   #=> "ruby"


(2)dirname(file_name) → dir_name


Returns all components of the filename given in file_name except the last one. The filename can be formed using both
File::SEPARATOR
and
File::ALT_SEPARATOR
as the separator when
File::ALT_SEPARATOR
is not
nil
.

File.dirname("/home/gumby/work/ruby.rb")   #=> "/home/gumby/work"



                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: