Next | Program Repair Shop | 81 |
28 opendir ($dh,$pwd) || die "Can't list $pwd\n";
Can't list c:/tmp/boogie
Why not!?!?!
Wrong permissions?
Did someone remove it while the program was running?
Catastrophic disk failure?
opendir ($dh,$pwd) || die "Can't open dir $pwd: $!";
$! means "Why not"
Can't open dir c:/tmp/boogie: Permission denied
Next | Copyright © 2002 M. J. Dominus |