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