0
I’m trying to move an image that’s located inside storage/temp
for storage/app/public/erro_log
with the method Storage::move();
, but I get the error of File not found
, even if the image is at the place of origin.
For the test I ended up isolating the method:
Storage::move(storage_path('temp/erro.png'), storage_path('app/spublic/erro_log/123.png'));
In summary when moving the image to another destination I am getting the error saying that it does not exist even if it is in the log location, (just copy and paste the path in the terminal that the image opens).
@EDIT
I tested following the same logic on Linux and generated the same error File not found
.
I appreciate any help.
I believe you should configure the disk that you will use to save, move, etc... in the file
root_folder\config\filesystems.php
. Following the documenting– sant0will
I ended up solving the problem, but I did not find how to change this parameter.
– Bulfaitelo