How To Create Folder In Laravel Using CMD?

PHOTO EMBED

Fri Apr 29 2022 06:32:16 GMT+0000 (Coordinated Universal Time)

Saved by @pakainfo

public function createDirecrotory(Request $request)

{

$path = public_path('upload/pakainfo.com');



if(!File::isDirectory($path)){

File::makeDirectory($path, 0777, true, true);

}



dd('done');

}

Using Storage System:

public function createFolder()

{

    $response = Storage::makeDirectory('upload/pakainfo.com');

    dd($response);

}

Using Core PHP:

public function removeFolder()

{

    $folderPath = public_path('uploads');

    $response = mkdir($folderPath);

    dd($response);

}
content_copyCOPY

In this post, we will guide you how to create folder in storage in laravel 6 application. we can easily create directory if not exists using File or Storage facade in laravel 6 project. i will give you simple and more solution of laravel 6 make folder in public folder or storage folder. I will give you more way to create folder in public folder in laravel 6. you can see i will use File facade to create folder, Storage facade will use to create directory from storage in laravel 6 and also i will give you simple code core php to create folder.
https://www.pakainfo.com/how-to-create-folder-in-laravel-using-cmd/