in reply to Re: Reading through a large bunch of files
in thread Reading through a large bunch of files

It reads in all of the files, processes the first file correctly as it should, then stop and exit without touching the other files

  • Comment on Re^2: Reading through a large bunch of files

Replies are listed 'Best First'.
Re^3: Reading through a large bunch of files
by Dr Manhattan (Beadle) on Aug 23, 2013 at 15:18 UTC

    I tried putting the xml files in a array instead

    my @filelist = (-f, <*.xml>); foreach my $file (@filelist) { print "Working on... $file\n"; my $twig = new XML::Twig(TwigRoots => {title => 1, text => 1}); $twig->parsefile($file); open(Output, ">:utf8", "2_$file") or die "can't open file $!\n"; + $twig->root->print(\*Output); close (Output); }

    And got the error message "Use of uninitialized value $_[0] in -f at C:/Perl/site/lib/XML/Twig.pm line 752."

      Check your syntax. There is a grep missing somewhere.
      لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ