Suppression de tous les fichiers dans un répertoire Laravel 8

use Illuminate\Filesystem\Filesystem;
$file = new Filesystem;
$file->cleanDirectory('storage/app/backgrounds');
Friendly Ferret