ItSolutionStuff.com

Laravel Move File from One Folder to Another Example

By Hardik Savani • April 16, 2024
Laravel

This article will provide some of the most important example how to move file from one folder to another in laravel. this example will help you move files from one folder to another in laravel. I’m going to show you about laravel cut file from one disk to another.

If you require to move file from one folder to another in laravel application then i will help you how to do it in laravel. laravel provide File and Storage facade and their method to work with file system. i will give you both way example with syntax so you can use it.

You can easily move file in laravel 5, laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 in this post solution.

Example 1: File Facade

Syntax:

File::move(from_path, to_path);

Example:

In this example, i have one folder "exist" with test.png image in public folder. we will move this file to new folder "move" with rename file test_move.png. so let's see bellow code.

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use File;

class DemoController extends Controller

{

/**

* Write code on Construct

*

* @return \Illuminate\Http\Response

*/

public function moveImage(Request $request)

{

File::move(public_path('exist/test.png'), public_path('move/test_move.png'));

dd('Copy File dont.');

}

}

Example 2: Storage Facade

Syntax:

Storage::move(from_path, to_path);

Example:

In this example, i have one folder "exist" with test.png image in storage. we will move this file to new folder "move" with rename file test_move.png. so let's see bellow code.

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use Storage;

class DemoController extends Controller

{

/**

* Write code on Construct

*

* @return \Illuminate\Http\Response

*/

public function moveImage(Request $request)

{

Storage::move('exist/test.png', 'move/test_move.png');

dd('Copy File dont.');

}

}

I hope it can help you...

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

šŸ“ŗ Subscribe on YouTube

We Are Recommending You

ā˜…

How to Make PDF File in Laravel 7?

Read Now →
ā˜…

Laravel Create Zip File and Download Example

Read Now →
ā˜…

PHP Dropzone Display Existing Files from Server Example

Read Now →
ā˜…

How to Check Input File is Empty or Not in Laravel?

Read Now →
ā˜…

How to Get File Size from Storage in Laravel?

Read Now →
ā˜…

Laravel - How to Convert File(image, audio, video) Extension using CloudConvert?

Read Now →
ā˜…

How to Get File Name without Extension in PHP?

Read Now →
ā˜…

How to Count Number of Files in Directory using PHP?

Read Now →
ā˜…

How to Count Number of Files in a Directory in PHP?

Read Now →