i can count files in the folder with this :
\Illuminate\Filesystem\Filesystem\File::files($path)
then i can count all files in all subfolders (with specific storage)
foreach ($directories as $directory) {
$path = Storage::disk($this->disk)->path($directory);
$files = \Illuminate\Filesystem\Filesystem\File::files($path);
if ($files) {
$count += count($files);
}
}
}
i can count all files in this folder
How can i count only png or jpeg files with minimum overload?
thanks in advanced!
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire