Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi I need to copy a folder in the user registration and will track the new user name in a folder، I found this code on the server but does not work

        //Bulder Blog Folder
    $Default='blog\Default';
    $New='blog\\';
    $Blog=$New.$BlogName;
    exec("xcopy $Default $Blog /e/i", $a, $a1); 
share|improve this question
Are you sure: a) you have xcopy command on your server? b) exec is allowed by PHP settings? – Alexander Larikov Jul 28 '12 at 12:08
You should probably be more specific when explaining the problem that you're having. Just saying it doesn't work is not good enough. Was there any error messages? – Kemal Fadillah Jul 28 '12 at 12:22
I do not know, must ask the web hosting support command (mkdir) works،The only way that I have written the same order? – Saeid Jul 28 '12 at 12:22
I do not give any error, no message, do not like it – Saeid Jul 28 '12 at 12:32

2 Answers

Refer to php.net for information.

Since copying full folders isn't build in - you should write your own function to do so:

  1. Make new directory that'll store copies of the files [function:mkdir]
  2. List contents of folder [function:glob]
  3. Foreach this list and copy each file using [function:copy]

If you're too lazy to write this yourself - go here for rcopy.

share|improve this answer
up vote 1 down vote accepted

I found the answer

//Windows Server
$Default='User\Default';
$New='User\'.$_POST['UserAddress'];
exec("xcopy $Default $New /e/i");

//Linux Server
$Default='User/Default';
$New='User/'.$_POST['UserAddress'];
exec("cp -r $Default $New");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.