248件ヒット
[1-100件を表示]
(0.038秒)
種類
- インスタンスメソッド (144)
- 特異メソッド (48)
- モジュール関数 (24)
- 文書 (20)
- 定数 (12)
ライブラリ
- ビルトイン (72)
- mkmf (12)
- pathname (24)
-
rubygems
/ dependency _ installer (24) -
rubygems
/ installer (12) -
rubygems
/ specification (48) - shell (12)
-
shell
/ command-processor (12) -
shell
/ filter (12)
クラス
- File (24)
-
File
:: Stat (24) -
Gem
:: DependencyInstaller (24) -
Gem
:: Installer (12) -
Gem
:: Specification (48) - Pathname (24)
- Shell (12)
-
Shell
:: CommandProcessor (12) -
Shell
:: Filter (12)
キーワード
-
DEFAULT
_ OPTIONS (12) -
NEWS for Ruby 2
. 5 . 0 (8) -
add
_ bindir (12) -
default
_ executable (12) - executable? (66)
-
executable
_ real? (66) - executables (12)
-
find
_ executable (12) - new (24)
-
ruby 1
. 8 . 4 feature (12)
検索結果
先頭5件
-
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
//}...