るりまサーチ

最速Rubyリファレンスマニュアル検索!
24件ヒット [1-24件を表示] (0.094秒)

別のキーワード

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

ライブラリ

クラス

検索結果

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

FileTest.#exist? と同じです。

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

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

Dir.exist?(file_name) -> bool (18236.0)

file_name で与えられたディレクトリが存在する場合に真を返します。 そうでない場合は、偽を返します。

...
file
_name で与えられたディレクトリが存在する場合に真を返します。
そうでない場合は、偽を返します。

@param file_name 存在を確認したいディレクトリ名。

//emlist[例][ruby]{
Dir.exist?(".") # => true
File
.directory?(".") # => true
//}

@s...
...ee File.directory?...