- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
<?php
function echo_win_drives() {
for($c='A'; $c<='Z'; $c++) {
if(is_dir($c.':'))
echo $c . ": ".systemdsk($c);
} }
function systemdsk($c) {
if(is_dir($c.':/windows') || is_dir($c.':/winnt') || is_dir($c.':/win_nt')) {
return " - system disk<br />\n"; } else { return "<br />\n"; };
}
echo_win_drives();
?>
guest 29.05.2009 14:14 # +2
guest 01.06.2009 12:47 # 0
guest 03.06.2009 18:25 # +1