in reply to How to run multiple xml in a directory on a single perl script

To get a list of all the xml files, I think it's much easier to use glob

my @docs = glob('dir/*.xml');

BTW, do check the docs to fully understand how glob works, (paths with spaces may not work as you expect!).

  • Comment on Re: How to run multiple xml in a directory on a single perl script
  • Download Code