# File lib/tins/find.rb, line 63
      def stat
        begin
          @stat ||=
            if finder.follow_symlinks
              File.stat(self)
            else
              File.lstat(self)
            end
        rescue EXPECTED_STANDARD_ERRORS
          if finder.raise_errors
            raise
          end
        end
      end