# File lib/chef_zero/data_store/v1_to_v2_adapter.rb, line 119
      def exists_dir?(path)
        return nil if skip_organizations?(path)
        if using_default?(path)
          true
        else
          fix_exceptions do
            real_store.exists_dir?(path[2..-1])
          end
        end
      end