Unter PHP ist die API mit Hilfe der (wie sollte es anders sein) php_w32api.dll erreichbar
Es geht darum, dass ich den Inhalt des CD-Rom's auflisten will.
Danke im voraus.
function all_files($dir)
{
$result=array();
foreach(glob($dir.'/*',GLOB_NOSORT) as $file)
{
if(is_file($file))$result[]=$file;
if(is_dir($file)) $result=array_merge($result,all_files($file));
}
return $result;
}
echo '<pre>';
print_r( all_files('d:'));
echo '</pre>';
function all_files($dir)
{
return (glob($dir.'/*'));
}
echo '<pre>';
for( $i = ord('A') ; $i <= ord('Z') ; $i++ ) {
if ( is_dir( chr($i) . ':' ) ) {
print_r( all_files(chr($i) . ':'));
}
}
echo '</pre>';
Kommentar