method
exist?
v2_1_10 -
Show latest stable
- Class:
FileUtils::Entry_
exist?()public
No documentation available.
# File lib/fileutils.rb, line 1255
def exist?
begin
lstat
true
rescue Errno::ENOENT
false
end
end