
File::Find::Rule::XPath - rule to match on XPath expressions

use File::Find::Rule::XPath;
my @files = File::Find::Rule->file
->name('*.dkb')
->xpath( '//section/title[contains(., "Crustacean")]' )
->in($root);

This module extends File::Find::Rule to provide the ability to locate XML files which match a given XPath expression.

Matches XML files which contain one or more nodes matching the given XPath expression. Files which are not 'well formed' XML are silently skipped.
If no XPath expression is supplied, the value '/' is used. This will match all files which are well formed XML.

Grant McLean <grantm@cpan.org>

To use this module, you must have File::Find::Rule and one of the following XPath implementations: XML::LibXML or XML::XPath

Copyright 2002 Grant McLean <grantm@cpan.org>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.