copypath.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. define('InEmpireCMSCopyPath',TRUE);
  3. //本程序由wm_chief原创,如要转载,请注明作者与来源(http://www.phome.net)
  4. class copy_path{
  5. function wm_chief_copypath($o_path,$n_path)
  6. {
  7. $hand=@opendir($o_path);
  8. if(!file_exists($n_path))//目标目录不存在则建立
  9. {
  10. $this->wm_chief_createpath($n_path);
  11. }
  12. $i=0;
  13. while($file=@readdir($hand))
  14. {
  15. $i++;
  16. if($file!="."&&$file!="..")
  17. {
  18. //目录
  19. if(is_dir($o_path."/".$file))
  20. {
  21. $o_s_path=$o_path."/".$file;
  22. $n_s_path=$n_path."/".$file;
  23. $this->wm_chief_copypath($o_s_path,$n_s_path);
  24. }
  25. else
  26. {
  27. $o_file=$o_path."/".$file;
  28. $n_file=$n_path."/".$file;
  29. $this->wm_chief_copyfile($o_file,$n_file);
  30. }
  31. }
  32. }
  33. @closedir($hand);
  34. return true;
  35. }
  36. function wm_chief_copyfile($o_file,$n_file)
  37. {
  38. @copy($o_file,$n_file);
  39. }
  40. function wm_chief_createpath($n_path)
  41. {
  42. @mkdir($n_path,0777);
  43. @chmod($n_path,0777);
  44. }
  45. }
  46. //本程序由wm_chief原创,如要转载,请注明作者与来源(http://www.phome.net)
  47. ?>