# File lib/chef_zero/data_store/v1_to_v2_adapter.rb, line 38 def create_dir(path, name, *options) return nil if skip_organizations?(path, name) if using_default?(path, name) raise DataAlreadyExistsError.new(path + [name]) end fix_exceptions do real_store.create_dir(path[2..-1], name, *options) end end