Jump to content

Recommended Posts

Posted

If you have ever needed to copy a bunch of files or folders

there is an easy way of doing this with little effort.

 

I wrote this script to manage new account folder creation

on our local intranet and it works great. I made a template

folder containing all the needed files and folders and used this

script when setting up a new user. Enjoy...

 

 

<?php
function recurse_copy($src,$dst) {
    $dir = opendir($src);
    @mkdir($dst);
    while(false !== ( $file = readdir($dir)) ) {
        if (( $file != '.' ) && ( $file != '..' )) {
            if ( is_dir($src . '/' . $file) ) {
                recurse_copy($src . '/' . $file,$dst . '/' . $file);
            }
            else {
                copy($src . '/' . $file,$dst . '/' . $file);
            }
        }
    }
    closedir($dir);
}
?>

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...