method

stat!

v1_9_2_180 - Show latest stable - Class: FileUtils::Entry_
stat!()
public

No documentation available.

# File lib/fileutils.rb, line 1201
    def stat!
      return @stat if @stat
      if lstat! and lstat!.symlink?
        @stat = File.stat(path())
      else
        @stat = lstat!
      end
      @stat
    rescue SystemCallError
      nil
    end