Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我需要在用户注册中复制一个文件夹,并将跟踪文件夹中的新用户名,我在服务器上找到此代码但不起作用
//Bulder Blog Folder $Default='blog\Default'; $New='blog\\'; $Blog=$New.$BlogName; exec("xcopy $Default $Blog /e/i", $a, $a1);
我找到了答案
//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");
有关信息,请参阅php.net。
由于没有内置复制完整文件夹 - 您应该编写自己的函数来执行此操作:
如果你懒得自己写这个 - 去这里rcopy。