Eliminar HTacces en todas las carpetas

echo 'dani';
function showFiles($path){
$dir = opendir($path);
$files = array();
while ($current = readdir($dir)){
if( $current != "." && $current != "..") {
if(is_dir($path.$current)) {
showFiles($path.$current.'/');
}
else {
$files[] = $current;
}
}
}

echo '

'.$path.'

';
echo '

    ';
    for($i=0; $iHTACCESS'.$files[$i]."

    ";

    //echo $path.$files[$i];
    unlink($path.$files[$i]);

    }else{
    echo '

  • '.$files[$i]."
  • ";
    }

    }
    echo '

';
}

showFiles('./');