Skip to content

Instantly share code, notes, and snippets.

@Grendel7
Created February 17, 2024 21:27
Show Gist options
  • Save Grendel7/962f4ed1c62744ec669ffa3f54127204 to your computer and use it in GitHub Desktop.
Save Grendel7/962f4ed1c62744ec669ffa3f54127204 to your computer and use it in GitHub Desktop.
Delete files with backticks in the file name
<?php
$files = scandir('.');
foreach ($files as $file) {
if (strpos($file, '\\') !== false) {
echo "Deleting {$file}<br>";
unlink($file);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment