るりまサーチ

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

別のキーワード

  1. _builtin executable_real?
  2. _builtin executable?
  3. pathname executable_real?
  4. pathname executable?
  5. mkmf find_executable

検索結果

File.executable_real?(path) -> bool (39100.0)

FileTest.#executable_real? と同じです。

...
File
Test.#executable_real? と同じです。

@param path パスを表す文字列を指定します。...

FileTest.#executable_real?(file) -> bool (21219.0)

ファイルがカレントプロセスの実ユーザか実グループで実行できる時に真を返します。そうでない場合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。

...を返します。

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

//emlist[例][ruby]{
IO.write("empty.txt", "")
File
.chmod(0744, "empty.txt")
File
Test.executable_real?("empty.txt") # => true
File
.chmod(0644, "empty.txt")
File
Test.executable_real?("empty.txt") # => fa...

File::Stat#executable_real? -> bool (21113.0)

実ユーザ/グループIDで実行できる時に真を返します。

...実ユーザ/グループIDで実行できる時に真を返します。

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

Shell#executable_real?(file) -> bool (18207.0)

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

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

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

@see FileTest.#executable_real?...

Shell::CommandProcessor#executable_real?(file) -> bool (18207.0)

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

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

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

@see FileTest.#executable_real?...

絞り込み条件を変える

Shell::Filter#executable_real?(file) -> bool (18207.0)

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

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

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

@see FileTest.#executable_real?...