create folder in laravel

前端 未结 4 1636
迷失自我
迷失自我 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:06

    You can try this code:-

    use Illuminate\Support\Facades\File;
    
    if (! File::exists("your-path")) {
        File::makeDirectory("your-path");
    }
    

提交回复
热议问题