Is there a Ruby class/method where I could pass "a full path", home/me/a_file.txt
, to identify whether it is a valid file path?
# file? will only return true for files
File.file?(filename)
and
# Will also return true for directories - watch out!
File.exist?(filename)