# File lib/ole/storage/file_system.rb, line 175
      def size path
        dirent_from_path(path).size
      rescue Errno::EISDIR
        # kind of arbitrary. I'm getting 4096 from ::File, but
        # the zip tests want 0.
        0
      end