organikhaberlesme.com için PHP API Sınıfıdır.
// Include The Class (You have to download the files first)
include './src/Finder.php';
$finder = new Finder('./controller/admin');
$files = $finder->extension('php')->get();
$files = $finder->date(strtotime("-1 day"), '<')->get();
$files = $finder->contain('throw')->get();
$files = $finder->include('dashboard.php')->get();
$files = $finder->exclude('dashboard.php')->get();
just change get with delete
$files = $finder->exclude('dashboard.php')->delete();
echo json_encode($files, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE);