Laravel Check If Folder Exists Before Create Directory Example
In this post, i will help to check if directory exists or not before create in laravel 5 application. we can simply check if folder exist when you create new directory using File facade. File facade will provide method to check directory and create directory with permission using isDirectory() and makeDirectory().
we are always looking to create new folder dynamic when you need to store image according to dynamic database records on your laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 project.
isDirectory() will take one argument as folder path and return true if folder exist or false.
makeDirectory() will take four argument for create folder with permission.
I gave you simple controller method example to check if directory exist and create new one if not. Just check bellow example, it will create new folder "itsolutionstuff.com" on your upload folder in public folder.
Controller Method:
public function formSubmit(Request $request)
{
$path = public_path('upload/itsolutionstuff.com');
if(!File::isDirectory($path)){
File::makeDirectory($path, 0777, true, true);
}
dd('done');
}
Controller Method 2:
public function formSubmit(Request $request)
{
$path = public_path('upload/itsolutionstuff.com');
if(!Storage::exists($path)){
Storage::makeDirectory($path, 0777, true, true);
}
dd('done');
}
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Install JQuery UI in Laravel Vite?
- How to Install JQuery in Laravel Vite?
- Laravel Download File from URL to Storage Example
- Laravel Call Function from Same Controller Example
- How to Delete File from Public Folder / Storage Folder in Laravel?
- Laravel 11 File Upload with Progress Bar Example
- Laravel Create Word Document File using phpoffice/phpword package
- How to Clear Log File using Command in Laravel?
- How to Get File Size from Storage in Laravel?
- Laravel Storage Dropbox Integration Example
- How to Create Zip File in Laravel?
- How to Check If File Exists or Not in Laravel?
- How to Count Number of Files in a Directory in PHP?
- How to Count Files in a Directory using Laravel?