るりまサーチ

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

別のキーワード

  1. _builtin file?
  2. _builtin file
  3. file size
  4. base file
  5. file atime

検索結果

File.file?(path) -> bool (45217.0)

FileTest.#file? と同じです。

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

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

FileTest.#file?(file) -> bool (27338.0)

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

...aram file ファイル名を表す文字列か IO オブジェクトを指定します。

@raise IOError 指定された IO オブジェクト file が既に close されていた場合に発生します。

例:
File
Test.file?('/bin/bash') # => true
File
Test.file?('/bin') # => false
File
Test...
....file?('/no_such_file') # => false...

File::Stat#file? -> bool (27220.0)

通常ファイルの時に真を返します。

...通常ファイルの時に真を返します。

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

Shell#file?(file) -> bool (24314.0)

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

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

@param file ファイル名を表す文字列か IO オブジェクトを指定します。

@see FileTest.#file?...

Shell::CommandProcessor#file?(file) -> bool (24314.0)

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

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

@param file ファイル名を表す文字列か IO オブジェクトを指定します。

@see FileTest.#file?...

絞り込み条件を変える

Shell::Filter#file?(file) -> bool (24314.0)

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

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

@param file ファイル名を表す文字列か IO オブジェクトを指定します。

@see FileTest.#file?...

Pathname#file? -> bool (24224.0)

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

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


@see FileTest.#file?...

Net::FTP::MLSxEntry#file? -> bool (24208.0)

エントリの種類がファイルであれば true を返します。

...エントリの種類がファイルであれば true を返します。

Net::FTP::MLSxEntry#type == "file" と同じ意味です。...

Gem::Package::TarReader::Entry#file? -> bool (24202.0)

自身がファイルであれば、真を返します。 そうでない場合は、偽を返します。

自身がファイルであれば、真を返します。
そうでない場合は、偽を返します。

Gem::GemPathSearcher#matching_file?(spec, path) -> bool (12201.0)

与えられた spec に path が含まれている場合、真を返します。 そうでない場合は偽を返します。

与えられた spec に path が含まれている場合、真を返します。
そうでない場合は偽を返します。

@param spec Gem::Specification のインスタンスを指定します。

@param path 探索対象のパスを指定します。

絞り込み条件を変える