76件ヒット
[1-76件を表示]
(0.068秒)
種類
- インスタンスメソッド (52)
- クラス (12)
- 特異メソッド (12)
ライブラリ
- ビルトイン (36)
-
net
/ ftp (10) - pathname (12)
-
rubygems
/ package / tar _ reader / entry (12) -
shell
/ command-processor (6)
クラス
- File (12)
-
File
:: Stat (12) -
Gem
:: Package :: TarReader :: Entry (12) -
Net
:: FTP :: MLSxEntry (10) - Pathname (12)
-
Shell
:: CommandProcessor (6)
検索結果
先頭5件
-
Gem
:: Package :: TarReader :: Entry # directory? -> bool (21101.0) -
自身がディレクトリであれば、真を返します。 そうでない場合は、偽を返します。
自身がディレクトリであれば、真を返します。
そうでない場合は、偽を返します。 -
Net
:: FTP :: MLSxEntry # directory? -> bool (21101.0) -
エントリがディレクトリであれば true を返します。
...エントリがディレクトリであれば true を返します。
Net::FTP::MLSxEntry#type が "dir"、 "pdir"、 "cdir"、
のいずれかであれば true を返します。... -
Pathname
# directory? -> bool (21101.0) -
FileTest.directory?(self.to_s) と同じです。
...FileTest.directory?(self.to_s) と同じです。
@see FileTest.#directory?... -
Shell
:: CommandProcessor # directory?(file) -> bool (21100.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#directory?... -
File
. directory?(path) -> bool (18200.0) -
FileTest.#directory? と同じです。
...FileTest.#directory? と同じです。
@param path パスを表す文字列か IO オブジェクトを指定します。... -
File
:: Stat # directory? -> bool (18113.0) -
ディレクトリの時に真を返します。
...ディレクトリの時に真を返します。
//emlist[][ruby]{
p File::Stat.new($0).directory? #=> false
//}
@see FileTest.#directory?... -
File
:: Stat (18.0) -
ファイルの情報を格納したオブジェクトのクラス。
...ァイル名を引数に取るかわりに Stat 自身について判定する点が違います。
//emlist[][ruby]{
p File::Stat.new($0).directory? #=> false
p FileTest.directory?($0) #=> false
//}
1.8 以降では、属性メソッドがシステムでサポートされていない場合 nil...
