# File lib/chef_zero/data_store/v1_to_v2_adapter.rb, line 95
      def exists_dir?(path)
        return false if skip_organizations?(path)
        if path == []
          true
        elsif path == [ 'organizations' ] || path == [ 'users' ]
          true
        else
          return false if skip_organizations?(path)
          fix_exceptions do
            real_store.exists_dir?(path[2..-1])
          end
        end
      end