# File lib/chef_zero/data_store/raw_file_store.rb, line 130
      def list(path)
        begin
          Dir.entries(path_to(path)).select { |entry| entry != '.' && entry != '..' }.to_a
        rescue Errno::ENOENT
          raise DataNotFoundError.new(path)
        end
      end