Next Program Repair Shop 84

Function Conception

"Recursively copy a source directory to a destination directory."

The arguments are $src, the path of the source directory, and $dst, the path of the destination directory.

    13     &xcopy($source_directory,$target_directory);
    18       my ($pwd,$i)=($_[0],$i++);
    51         &xcopy($source_node) if -d $source_node;


Next Copyright © 2002 M. J. Dominus