方法
实例公共方法
blank?() 链接
如果一个 Pathname
为空,则为空。
Pathname.new("").blank? # => true
Pathname.new(" ").blank? # => false
Pathname.new("test").blank? # => false
@return [true, false]
源代码: 显示 | 在 GitHub 上查看
# File activesupport/lib/active_support/core_ext/pathname/blank.rb, line 13 def blank? to_s.empty? end
existence() 链接
如果命名文件存在,则返回接收器,否则返回 nil
。pathname.existence
等同于
pathname.exist? ? pathname : nil
例如,类似于
content = pathname.read if pathname.exist?
变成
content = pathname.existence&.read
@return [Pathname]
源代码: 显示 | 在 GitHub 上查看
# File activesupport/lib/active_support/core_ext/pathname/existence.rb, line 20 def existence self if exist? end