# File lib/chef_zero/data_store/raw_file_store.rb, line 43
      def clear
        if destructible
          Dir.entries(root).each do |entry|
            next if entry == '.' || entry == '..'
            FileUtils.rm_rf(Path.join(root, entry))
          end
        end
      end