lib/eco/data/files/helpers.rb in eco-helpers-2.5.10 vs lib/eco/data/files/helpers.rb in eco-helpers-2.6.0
- old
+ new
@@ -66,10 +66,10 @@
file_path(File.expand_path(fullname))
end
def file_exists?(file)
return false if !file
- return File.exists?(file) || File.exists?(File.expand_path(file))
+ return File.exist?(file) || File.exist?(File.expand_path(file))
end
def dir_exists?(path)
Dir.exist?(path) || Dir.exist?(File.expand_path(path))
end