open notepad and paste this code into a new file
code:
<?
function count_files( $dir )
{
$retval = 0;
if( $dir && is_dir( $dir ) )
{
if( ($d = opendir( $dir )) !== false )
{
while( ($f = readdir( $d )) !== false )
{
if( is_file( $dir . "/" . $f ) ) ++$retval;
}
closedir( $d );
}
}
return $retval;
}
print count_files( "/soundpacks" );
?>
save it as soundpacks.php or whatever and upload