# File lib/ole/storage/file_system.rb, line 231
      def unlink(*paths)
        paths.each do |path|
          dirent = dirent_from_path path
          dirent.parent.delete dirent
        end
        paths.length # hmmm. as per ::File ?
      end