浏览代码

修改上传目录

hzd 2 月之前
父节点
当前提交
40bb9742f7
共有 2 个文件被更改,包括 8 次插入8 次删除
  1. 4 4
      application/admin/controller/File.php
  2. 4 4
      application/api/controller/v1/Upload.php

+ 4 - 4
application/admin/controller/File.php

@@ -10,9 +10,9 @@ class File extends Auth
         $file = request()->file('files');
         // 移动到框架应用根目录/uploads/ 目录下
         $info = $file->validate([ 'size'=>config('app.max_upload_file_size') ])
-            ->move(env('root_path') . 'public' . DIRECTORY_SEPARATOR . 'uploads'. DIRECTORY_SEPARATOR . 'files');
+            ->move(env('root_path') . 'public' . DIRECTORY_SEPARATOR . 'uploads'. DIRECTORY_SEPARATOR . 'files2');
         if($info){
-            $img = '/uploads/files/' . $info->getSaveName();
+            $img = '/uploads/files2/' . $info->getSaveName();
             $img = str_replace('\\', '/', $img);
 
             $path = config("app.app_host").$img;
@@ -26,9 +26,9 @@ class File extends Auth
         $file = request()->file('files');
         // 移动到框架应用根目录/uploads/ 目录下
         $info = $file->validate(config('app.max_upload_img'))
-            ->move(env('root_path') . 'public' . DIRECTORY_SEPARATOR . 'uploads'. DIRECTORY_SEPARATOR . 'files');
+            ->move(env('root_path') . 'public' . DIRECTORY_SEPARATOR . 'uploads'. DIRECTORY_SEPARATOR . 'files2');
         if($info){
-            $img = '/uploads/files/' . $info->getSaveName();
+            $img = '/uploads/files2/' . $info->getSaveName();
             $img = str_replace('\\', '/', $img);
 
             $path = config("app.app_host").$img;

+ 4 - 4
application/api/controller/v1/Upload.php

@@ -13,9 +13,9 @@ class Upload extends Controller
         $file = request()->file('uploadFile');
         // 移动到框架应用根目录/uploads/ 目录下
         $info = $file->validate([ 'size'=>config('app.max_upload_file_size') ])
-            ->move(env('root_path') . 'public' . DIRECTORY_SEPARATOR . 'uploads'. DIRECTORY_SEPARATOR . 'files');
+            ->move(env('root_path') . 'public' . DIRECTORY_SEPARATOR . 'uploads'. DIRECTORY_SEPARATOR . 'files2');
         if($info){
-            $img = '/uploads/files/' . $info->getSaveName();
+            $img = '/uploads/files2/' . $info->getSaveName();
             $img = str_replace('\\', '/', $img);
             HelpHander::success(['path' => config("app.app_host").$img]);
         }else{
@@ -29,9 +29,9 @@ class Upload extends Controller
         // 移动到框架应用根目录/uploads/ 目录下
         $config = config('max_upload_img');
         $info = $file->validate($config)
-            ->move(env('root_path') . 'public' . DIRECTORY_SEPARATOR . 'uploads'. DIRECTORY_SEPARATOR . 'files');
+            ->move(env('root_path') . 'public' . DIRECTORY_SEPARATOR . 'uploads'. DIRECTORY_SEPARATOR . 'files2');
         if($info){
-            $img = '/uploads/files/' . $info->getSaveName();
+            $img = '/uploads/files2/' . $info->getSaveName();
             $img = str_replace('\\', '/', $img);
 
             try{