Codice PHP:
GNU nano 1.2.4 File: readir.php
<?
$dir="/var/www/prove/";
$fileopen="file.txt";
if ($handle = opendir($dir)) {
$count=0;
while (false !== ($file = readdir($handle))) {
if($file!="." && $file!="..") {
$count++;
}
}
}
$file = fopen($fileopen, "w");
$stringa="Totale=".$count;
fwrite($file,$stringa);
fclose($file);
?>