Creo que con
DirectoryIterator es mas eficiente y sencillo:
Código PHP:
<?php
/*
* Created on 7/12/2006
*
* To change the template for this generated file go to
* Window - Preferences - PHPeclipse - PHP - Code Templates
*
*/
$dir = new DirectoryIterator('/Servidor/WEB/php/POO');//Aqui se indica la ruta
$num=0;
while($dir->valid()) {
if(!$dir->isDot()) {
$num++;
print $dir->isFile()."<br />";
}
$dir->next();
}
print"Total de archivos : $num";
?>
__________________
-URL=
Go PHP5.
-Age=22.
-Learning=PHP,J2EE,Struts,MAMBO,C++,JSON,AJAX,XHTML ,CSS.