geetpurwar's avatar

Move File From /Public to /Storage/App Folder

Hi,

How do I move 'pdf' from '/public' folder to '/storage/app/public' folder. Thanks.

0 likes
4 replies
MichalOravec's avatar

Use public storage disk whenyou upload files.

Storage::disk('public')

Configuration you can find in config\filesystems.php

Use this command

php artisan storage:link

Do you have some data in database? What exactly you save as path in your database? Because you can just copy that file or files in that directory and change path in database to correct path.

geetpurwar's avatar

@michaloravec Thanks for reply. However, I am looking for "how do I move already uploaded files, which are in '/public' folder"

Please or to participate in this conversation.