[QUESTION] copy();
Posted: Fri Feb 04, 2005 8:35 am
Can move whole folders? With all its contents to? AND keep an original folder still where it was?
Code: Select all
<?php
copy();
?>A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<?php
copy();
?>Code: Select all
<?php
copy ("users", "dalehay") or die ("Could not move");
?>So i take it there isnt a way...Warning: copy(dalehay): failed to open stream: Is a directory in /home/dframe/public_html/tester.php on line 2
Could not move
feyd wrote:why not create your own?
feyd wrote:create your own function to copy the contents of one folder to another.