関連するキーワード
ライブラリ
- ビルトイン (5)
検索結果
-
File
. readable?(path) -> bool (18101) -
FileTest.#readable? と同じです。
...
FileTest.#readable? と同じです。
@param path パスを表す文字列か IO オブジェクトを指定します。... -
File
. world _ readable?(path) -> Integer | nil (6101) -
path が全てのユーザから読めるならばそのファイルのパーミッションを表す 整数を返します。そうでない場合は nil を返します。
...うでない場合は nil を返します。
整数の意味はプラットフォームに依存します。
@param path パスを表す文字列か IO オブジェクトを指定します。
例:
m = File.world_readable?("/etc/passwd")
"%o" % m # => "644"...
