# File lib/chef_zero/data_store/v1_to_v2_adapter.rb, line 20
      def create_dir(path, name, *options)
        raise DataNotFoundError.new(path) if skip_organizations?(path)
        raise "Cannot create #{name} at #{path} with V1ToV2Adapter: only handles a single org named #{single_org}." if skip_organizations?(path, name)
        raise DataAlreadyExistsError.new(path + [ name ]) if path.size < 2
        fix_exceptions do
          real_store.create_dir(path[2..-1], name, *options)
        end
      end