# File lib/chef_zero/data_store/memory_store_v2.rb, line 113
      def exists?(path, options = {})
        begin
          value = _get(path)
          if value.is_a?(Hash) && !options[:allow_dirs]
            raise "exists? does not work with directories (#{path} = #{value.class})"
          end
          return true
        rescue DataNotFoundError
          return false
        end
      end