How do you get the path to the Laravel Storage folder?

PhpLaravel

Php Problem Overview


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.

Php Solutions


Solution 1 - Php

For Laravel 5.x, use $storage_path = storage_path().

From the Laravel 5.0 docs:

> ### storage_path > > Get the fully qualified path to the storage directory.

Note also that, for Laravel 5.1 and above, per the Laravel 5.1 docs:

> You may also use the storage_path function to generate a fully qualified path to a given file relative to the storage directory: > > $path = storage_path('app/file.txt');

Solution 2 - Php

In Laravel 3, call path('storage').

In Laravel 4, use the storage_path() helper function.

Solution 3 - Php

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 4 - Php

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 5 - Php

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 6 - Php

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'

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionGarry PettetView Question on Stackoverflow
Solution 1 - PhpMark AmeryView Answer on Stackoverflow
Solution 2 - PhpAbishekView Answer on Stackoverflow
Solution 3 - PhpSagar NaliyaparaView Answer on Stackoverflow
Solution 4 - PhpMukund BhartiView Answer on Stackoverflow
Solution 5 - PhpSadeeView Answer on Stackoverflow
Solution 6 - PhpUmang SoniView Answer on Stackoverflow