# File lib/chef_zero/data_store/raw_file_store.rb, line 35
      def path_to(path, name=nil)
        if name
          File.join(root, *path, name)
        else
          File.join(root, *path)
        end
      end