Laravel存储:链接不适用于自定义文件夹结构

My Laravel folder structure is

Laravel
|
|--site
|--files

Here, sites is my public folder. And rest of the folders go to files folder.

Now, when I run the command php artisan storage:link, it says

System cannot find the path specified

And obviously, the link is not working.

What am I missing here?

you have to update your helper functions

  1. public_path()
  2. storage_path()

according you your new directory structure

don't change the core may be you can create a new helper file and include in the composer.json.