copy one folder into another folder

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • swethak
    New Member
    • May 2008
    • 118

    copy one folder into another folder

    hi,

    i want to copy the contents of one folder into another folder.For that i create the one new folder . I copied the files of already existing folder into new folder.For that i write a code as

    [php]
    <?php
    mkdir("filesscr eate",0777);
    copy('admin','f ilescreate');
    ?>
    [/php]

    But in that new folder 'filescreate' created. and files in the admin folder are not copied.plz tell that what's the problem in my code.
  • Tarantulus
    New Member
    • May 2007
    • 114

    #2
    copy() only works on single files.

    Comment

    • pbmods
      Recognized Expert Expert
      • Apr 2007
      • 5821

      #3
      Heya, Swethak.

      Do you need to copy the folder, or can you simply move it? PHP's rename() function works on directories (http://php.net/rename).

      Comment

      Working...