create folder in laravel

前端 未结 4 1627
迷失自我
迷失自我 2020-12-14 16:30

I have problem let user create folder in laravel 4 through ajax request > route > controller@method.
I did test ajax success request to the url call right method.
Wh

4条回答
  •  無奈伤痛
    2020-12-14 17:04

    Thanks to The Alpha. Your answer helped me, here is a laravel 5 way to do it for those who use the later version :

    Storage::disk('local')->makeDirectory('path/to');
    

    This will create a directory in storage/app/path/to

    Retrieve the directory you just created with :

    storage_path('app/path/to')
    

提交回复
热议问题