跳至内容 跳至搜索
方法
B
E

实例公共方法

blank?()

如果一个 Pathname 为空,则为空。

Pathname.new("").blank?      # => true
Pathname.new(" ").blank?     # => false
Pathname.new("test").blank?  # => false

@return [true, false]

# File activesupport/lib/active_support/core_ext/pathname/blank.rb, line 13
def blank?
  to_s.empty?
end

existence()

如果命名文件存在,则返回接收器,否则返回 nilpathname.existence 等同于

pathname.exist? ? pathname : nil

例如,类似于

content = pathname.read if pathname.exist?

变成

content = pathname.existence&.read

@return [Pathname]

# File activesupport/lib/active_support/core_ext/pathname/existence.rb, line 20
def existence
  self if exist?
end