Jiri,
Here is the entire code you can use to delete the dir:
<?php
function delete($file) {
chmod($file,0777);
if (is_dir($file)) {
$handle = opendir($file);
while($filename = readdir($handle)) {
if ($filename != "." && $filename != "..")
{
delete($file."/".$filename);
}
}
closedir($handle);
rmdir($file);
} else {
unlink($file);
}
}
delete("dir_name");
?>
At the bottum where it says "delete("dir_name");" just change the word dir_name to the dir name. Just put this PHP file in the above dir.
Hope this helps.
David