in reply to Re^4: Couldn't create file parser context for file "somename.xml"
in thread Couldn’t create file parser context for file "somename.xml"
but the files you want to open are
D:\Perl-Implementaion\ParseXML\test\bb.xml
and
D:\Perl-Implementaion\ParseXML\test\bbCopy.xml
Notice the missing "test". Fix:
my @files = map "$path/$_", grep /\.xml\z/, readdir(DIR);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Couldn't create file parser context for file "somename.xml"
by laleh-poly (Novice) on Dec 31, 2009 at 21:02 UTC | |
by ikegami (Patriarch) on Jan 01, 2010 at 11:22 UTC |