Take Files From One Folder And Move To Another Folder

[Solved] Take Files From One Folder And Move To Another Folder | Php - Code Explorer | yomemimo.com
Question : take files from one folder and move to another folder in php

Answered by : ankur-prajapati

$source_file = 'foo/image.jpg';
$destination_path = 'bar/';
rename($source_file, $destination_path . pathinfo($source_file, PATHINFO_BASENAME));

Source : https://stackoverflow.com/questions/19139434/php-move-a-file-into-a-different-folder-on-the-server | Last Update : Fri, 29 Oct 21

Question : php move file to another directory

Answered by : tiago-frana

rename('source', 'target');

Source : | Last Update : Sat, 23 Jul 22

Answers related to take files from one folder and move to another folder in php

Code Explorer Popular Question For Php