# File lib/ole/storage/file_system.rb, line 190
      def stat path
        # we do this to allow dirs.
        dirent = @ole.dirent_from_path path
        raise Errno::ENOENT, path unless dirent
        Stat.new dirent
      end