I had a similar goal to gather data from a folder full of XDPs into a
spreadsheet to track user behaviors, capture commonly entered values,
and run reports.If you are familiar with Python, I highly recommend
creating a simple script using Python 2.6 and the elementTree
(effbot.org) libraries. Since I cut my teeth on this project, I found it
helpful to break down the script's tasks into individual parts. The
material and examples for getting a folder's contents, writing variables
in lists, and us...