# File lib/chef_zero/data_store/v1_to_v2_adapter.rb, line 68
      def delete_dir(path, *options)
        raise DataNotFoundError.new(path) if skip_organizations?(path) && !options.include?(:recursive)
        fix_exceptions do
          real_store.delete_dir(path[2..-1], *options)
        end
      end