Skip to content

Instantly share code, notes, and snippets.

View gfucci's full-sized avatar
🎯
Focusing

Gabriel Fucci gfucci

🎯
Focusing
  • Ação Direta Web Studio
  • Florianópolis
View GitHub Profile
@gfucci
gfucci / DeleteFilesByExtensions.php
Last active July 20, 2024 20:37
Delete files recursively by extensions
<?php
// deletes all files with the chosen extensions. The script will run on all folders and subfolders starting from the folder where you ran the script (don't forget to make a backup first)
ini_set('memory_limit', -1);
$currentPath = getcwd();
$extensions = [
//put here extensions to delete
];