in reply to Re^5: Using XML::XSLT to convert XML to CSV
in thread Using XML::XSLT to convert XML to CSV

Ok, that's also the same as mine.

Under normal windows semantics

"C:/path/to/file.xml"
should be acceptable, provided you've actually got permissions to read that file (which probably includes read access to the directories above it)

You can try passing an XML::DOM object instead of a file (XML::XSLT supports both):

# stuff here.. my $parser = new XML::DOM::Parser; my $doc = $parser->parsefile ("c:/path/to/file.xml"); $xslt->transform($doc); # proceed