るりまサーチ

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

別のキーワード

  1. _builtin filetest
  2. filetest exist?
  3. filetest setuid?
  4. filetest size?
  5. filetest setgid?

ライブラリ

クラス

モジュール

キーワード

検索結果

FileTest.#exist?(file) -> bool (62124.0)

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

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

例:
FileTest
.exist?('/etc/passwd') # => true
FileTest
.exist?('/etc') # => true
FileTest
.exist?('/etc/no_such_file') # => false
FileTest
.exist?('/etc/no_such_directory') # => false...

Shell#exist?(file) -> bool (18128.0)

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

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

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

@see FileTest.#exist? FileTest.#exists?...

Shell::CommandProcessor#exist?(file) -> bool (18128.0)

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

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

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

@see FileTest.#exist? FileTest.#exists?...

Shell::Filter#exist?(file) -> bool (18128.0)

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

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

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

@see FileTest.#exist? FileTest.#exists?...

Pathname#exist? -> bool (18123.0)

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

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


@see FileTest.#exist?...

絞り込み条件を変える

File.exist?(path) -> bool (18116.0)

FileTest.#exist? と同じです。

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

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

Shell#exists?(file) -> bool (3028.0)

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

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

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

@see FileTest.#exist? FileTest.#exists?...

Shell::CommandProcessor#exists?(file) -> bool (3028.0)

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

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

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

@see FileTest.#exist? FileTest.#exists?...

Shell::Filter#exists?(file) -> bool (3028.0)

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

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

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

@see FileTest.#exist? FileTest.#exists?...