method
stat!
v2_6_3 -
Show latest stable
- Class:
Bundler::FileUtils::Entry_
stat!()public
No documentation available.
# File lib/bundler/vendor/fileutils/lib/fileutils.rb, line 1211
def stat!
return @stat if @stat
if lstat! and lstat!.symlink?
@stat = File.stat(path())
else
@stat = lstat!
end
@stat
rescue SystemCallError
nil
end