How to move a folder with subfolders and files to Laravel using Storage ?
Storage::move('old/file1.jpg', 'new/file1.jpg'); It seems to only work with files.
Storage does not support folder transfer. Need to use moveDirectory
use Illuminate\Filesystem\Filesystem; $file = new Filesystem(); $file->moveDirectory('../storage/app/public/old_folder', '../storage/app/public/new_folder'); Source: https://ru.stackoverflow.com/questions/926355/
All Articles