るりまサーチ

最速Rubyリファレンスマニュアル検索!
144件ヒット [1-100件を表示] (0.021秒)
トップページ > クエリ:read[x] > クエリ:readable?[x]

別のキーワード

  1. stringio read
  2. _builtin read
  3. csv read
  4. io read
  5. tuple read_all

ライブラリ

モジュール

キーワード

検索結果

<< 1 2 > >>

File::Stat#readable? -> bool (24207.0)

読み込み可能な時に真を返します。

...読み込み可能な時に真を返します。

//emlist[][ruby]{
p File::Stat.new($0).readable? #=> true
//}...

Net::FTP::MLSxEntry#readable? -> bool (24201.0)

内容が読み出せるなら true を返します。

内容が読み出せるなら true を返します。

Pathname#readable? -> bool (24201.0)

FileTest.readable?(self.to_s) と同じです。

...FileTest.readable?(self.to_s) と同じです。


@see FileTest.#readable?...

File.readable?(path) -> bool (24200.0)

FileTest.#readable? と同じです。

...FileTest.#readable? と同じです。

@param path パスを表す文字列か IO オブジェクトを指定します。...

FileTest.#readable?(file) -> bool (24200.0)

ファイルがカレントプロセスにより読み込み可能な時に真を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。

...は false を返します。

@param file ファイル名を表す文字列を指定します。

//emlist[例][ruby]{
IO.write("testfile", "")
File.chmod(0644, "testfile")
FileTest.readable?("testfile") # => true
File.chmod(0200, "testfile")
FileTest.readable?("testfile") # => false
//}...

絞り込み条件を変える

Shell#readable?(file) -> bool (24200.0)

FileTest モジュールにある同名のクラスメソッドと同じです.

...FileTest モジュールにある同名のクラスメソッドと同じです.

@param file ファイル名を表す文字列を指定します。

@see FileTest.#readable?...

Shell::CommandProcessor#readable?(file) -> bool (24200.0)

FileTest モジュールにある同名のクラスメソッドと同じです.

...FileTest モジュールにある同名のクラスメソッドと同じです.

@param file ファイル名を表す文字列を指定します。

@see FileTest.#readable?...

Shell::Filter#readable?(file) -> bool (24200.0)

FileTest モジュールにある同名のクラスメソッドと同じです.

...FileTest モジュールにある同名のクラスメソッドと同じです.

@param file ファイル名を表す文字列を指定します。

@see FileTest.#readable?...

File::Stat#world_readable? -> Integer | nil (12207.0)

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

...ミッションを表す
整数を返します。そうでない場合は nil を返します。

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

//emlist[][ruby]{
m = File.stat("/etc/passwd").world_readable? # => 420
sprintf("%o", m) # => "644"
//}...

Pathname#world_readable? -> bool (12201.0)

FileTest.world_readable?(self.to_s) と同じです。

...FileTest.world_readable?(self.to_s) と同じです。


@see FileTest.#world_readable?...

絞り込み条件を変える

Shell#world_readable? (12201.0)

@todo

@todo

Shell::CommandProcessor#world_readable? (12201.0)

@todo

@todo
<< 1 2 > >>