我想在filesystems.php中添加一个用于存储的路径“c:\ folder”
当我使用下面的代码时,会得到一个错误:

Driver [] is not supported.

代码:
'c_path' => [
    'driver' => 'local',
    'root' => "C:/Folder/",
],

那么如何解决这个问题呢?有人能给我提个解决办法吗?

最佳答案

从终端运行,

composer require league/flysystem

在文件filesystems.php文件中
   'c_path' => [
        'driver' => 'local',
        'root' => 'C:\uploads'
    ],

为了保存你的文件,
Storage::disk('c_path')->put('picture.png', $request->file('picture'));

09-29 21:16