I found a string where the subject was: acl code for many documents
or something close to that. No xpath used, however. Clay said:
Hi Alexander—
Sure, you can do this. Use the glob() function to get your list of items,
then iterate over it, something like this:
local $files[];
glob(“*.xml”,$files);
# untested code, debugging is left as an exercise
for ($file in $files) {
local $doc = doc_open($files[$file]);
current_doc($doc);
sdca2b();
doc_save($doc);
doc_close($doc);
}