るりまサーチ

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

別のキーワード

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

ライブラリ

クラス

検索結果

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

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

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

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

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

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