* Parse a folder and wait with an HTML Progress bar
* This example show the new options|features available with API 1.8.0
* @package PHP_CompatInfo
* @author Laurent Laville <pear@laurent-laville.org>
* @license http://www.opensource.org/licenses/bsd-license.php BSD
* @version CVS: $Id: pci180_parsefolder_tohtml.php,v 1.2 2008/07/22 20:26:45 farell Exp $
* @link http://pear.php.net/package/PHP_CompatInfo
* @since version 1.8.0b4 (2008-06-18)
require_once 'HTML/Progress2.php';
require_once 'PHP/CompatInfo.php';
// You may also use, all others renderer available
$driverOptions = array('args' => array('output-level' => 18));
$info = new PHP_CompatInfo($driverType, $driverOptions);
$info->addListener(array(&$bar, 'notify'));
$dir = 'C:\Temp\beehiveforum082\forum';
// You may use the new unified method parseData(), parseDir() became an alias
$info->parseData($dir, $opt);