るりまサーチ

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

別のキーワード

  1. _builtin -
  2. open-uri open
  3. irb/input-method new
  4. irb/input-method gets
  5. matrix -

検索結果

<< 1 2 3 > >>

Gem::Specification#executable -> String (18201.0)

実行可能ファイル名を返します。

実行可能ファイル名を返します。

Pathname#executable? -> bool (6223.0)

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

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


@see FileTest.#executable?...

Pathname#executable_real? -> bool (6223.0)

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

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


@see FileTest.#executable_real?...

File.executable?(path) -> bool (6217.0)

FileTest.#executable? と同じです。

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

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

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

FileTest.#executable_real? と同じです。

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

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

絞り込み条件を変える

FileTest.#executable?(file) -> bool (6213.0)

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

...合、ファイルが存在しない場合、あるいはシステムコールに失敗した場合などには false を返します。

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

例:
FileTest.executable?('/bin') # => true
FileTest.executable?('/bin/bash') # => true...

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

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

...ます。

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

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

File::Stat#executable? -> bool (6207.0)

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

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

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

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

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

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

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

Shell#executable?(file) -> bool (6207.0)

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

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

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

@see FileTest.#executable?...

絞り込み条件を変える

<< 1 2 3 > >>