Move a file from one folder to another

Move a file from one folder to another

In PHP we don’t have direct function for moving a file from
one folder to another . But we can achieve the same using the
function rename()

int rename ( string oldname, string newname)

eg
/home/category/new.txt

to move new.txt to “home”

we can use rename as

rename(’/home/category/new.txt’,/home/new.txt’);

Leave a Reply

You must be logged in to post a comment.


All material @ copyrighted by chrisranjana.com. If you want to link to this article you are welcome to do so. Unauthorized publication is strictly prohibited. This developer tutorial website contains articles by Php programmers , Software developers, Mysql programmers and asp c# programmers. This website also contains ajax tutorials and advanced mysql sql stored procedures and functions tutorials and sample codes.