'How do you get the path to the Laravel Storage folder?
I want to store uploaded images to my Laravel-based web app in a subdirectory of the Laravel storage directory. It's the directory at the same hierarchy level as the 'application' and 'public' directories.
Is there a framework method for doing this? I've searched the docs but can't find one.
Solution 1:[1]
For Laravel 5.x, use $storage_path = storage_path().
From the Laravel 5.0 docs:
storage_path
Get the fully qualified path to the
storagedirectory.
Note also that, for Laravel 5.1 and above, per the Laravel 5.1 docs:
You may also use the
storage_pathfunction to generate a fully qualified path to a given file relative to the storage directory:$path = storage_path('app/file.txt');
Solution 2:[2]
For Laravel version >=5.1
storage_path()
The storage_path function returns the fully qualified path to the storage directory:
$path = storage_path();
You may also use the storage_path function to generate a fully qualified path to a given file relative to the storage directory:
$app_path = storage_path('app');
$file_path = storage_path('app/file.txt');
Source: Laravel Doc
Solution 3:[3]
use this artisan command for create shortcut in public folder
php artisan storage:link
Than you will able to access posted img or file
Solution 4:[4]
Laravel 8.x <
If the file in a default disk: /storage/app/public/file.jpg, then:
$path = Storage::path('file.jpg');
if the file in a different storage. Ex: /storage/app/storage-dir/sub-dir/file.txt
Storage::disk('storage-dir')->path('sub-dir/file.txt')
And the $path will be "/var/www/project1/storage/app/storage-dir/sub-dir/file.txt"
There are also url()
$path = Storage::disk('storage-dir')->url('sub-dir/file.txt');
This will returns the path like: /storage/sub-dir/file.txt
For the ealier Laravel versions:
storage_path('app/file.txt');
Solution 5:[5]
You can use the storage_path(); function to get storage folder path.
storage_path(); // Return path like: laravel_app\storage
Suppose you want to save your logfile mylog.log inside Log folder of storage folder. You have to write something like
storage_path() . '/LogFolder/mylog.log'
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Community |
| Solution 2 | Community |
| Solution 3 | Mukund Bharti |
| Solution 4 | Sadee |
| Solution 5 | avn |
