Is there a way to delete all files in specific directory. I'm trying to clear all my files in my created folder backgrounds in storage\app\backgrounds but in docs seems no method for delete all.
Storage::delete('backgrounds\*.jpg');
Is there a way to delete all files in specific directory. I'm trying to clear all my files in my created folder backgrounds in storage\app\backgrounds but in docs seems no method for delete all.
Storage::delete('backgrounds\*.jpg');
I don't think if this is the best way to solve this. But I solved mine calling
use Illuminate\Filesystem\Filesystem;
Then initiate new instance
$file = new Filesystem;
$file->cleanDirectory('storage/app/backgrounds');
for Laravel >= 5.8
use Illuminate\Support\Facades\Storage;
// Get all files in a directory
$files = Storage::allFiles($dir);
// Delete Files
Storage::delete($files);
Just use it.
File::cleanDirectory($direction);
use File;
or better use Illuminate\Support\Facades\File;
). You can also use this in conjunction with Storage disks: File::cleanDirectory(Storage::disk('some-disk')->path(''));
–
Villiers You can use Filesystem method cleanDirectory
$success = Storage::cleanDirectory($directory);
Please see documentation for more information:
https://laravel.com/api/5.5/Illuminate/Filesystem/Filesystem.html#method_cleanDirectory
cleanDirectory
but does not actually solve calling those Storage::cleanDirectory
giving me an error League\Flysystem\Filesystem::cleanDirectory
. –
Meave Storage
facade. –
Bourgeon In Laravel 5.8 you can use:
Storage::deleteDirectory('backgrounds');
Remember to include:
use Illuminate\Support\Facades\Storage;
In Laravel 5.7 you can empty a directory using the Storage
facade like so:
Storage::delete(Storage::files('backgrounds'));
$dirs = Storage::directories('backgrounds');
foreach ($dirs as $dir) {
Storage::deleteDirectory($dir);
}
The delete()
method can receive an array of files to delete, while deleteDirectory()
deletes one directory (and its contents) at a time.
I don't think it's a good idea to delete and then re-create the directory as that can lead to unwanted race conditions.
I'm handling this by deleting the whole directory as I don't need it. But if, for any case, you need the directory you should be good by just recreating it:
$d = '/myDirectory'
Storage::deleteDirectory($d);
Storage::makeDirectory($d);
//You can use Illuminate\Filesystem\Filesystem and it's method cleanDirectory('path_to_directory).
For Example:
$FolderToDelete = base_path('path_to_your_directory');
$fs = new \Illuminate\Filesystem\Filesystem;
$fs->cleanDirectory($FolderToDelete);
//For Delete All Files From Given Directory.
$succes = rmdir($FolderToDelete);
//For Delete Directory
//This Method Works for me
#Laravel
#FileManager
#CleanDirectory
© 2022 - 2024 — McMap. All rights reserved.