instance method File::Stat#world_readable?

world_readable? -> Integer | nil[permalink][rdoc][edit]

全てのユーザから読めるならば、そのファイルのパーミッションを表す整数を返します。そうでない場合は nil を返します。

整数の意味はプラットフォームに依存します。


m = File.stat("/etc/passwd").world_readable?  # => 420
sprintf("%o", m)                              # => "644"