Method: Dir.exists?
- Defined in:
- dir.c
.exists?(file_name) ⇒ Boolean
Deprecated method. Don’t use.
3298 3299 3300 3301 3302 3303 |
# File 'dir.c', line 3298 static VALUE rb_dir_exists_p(VALUE obj, VALUE fname) { rb_warning("Dir.exists? is a deprecated name, use Dir.exist? instead"); return rb_file_directory_p(obj, fname); } |