in reply to Re: moving files from folder1 to folder2
in thread moving files from folder1 to folder2
Would this be what I need?
use File::NCopy; # the below are the default config values $file = File::NCopy->new( 'recursive' => 0, 'preserve' => 0, 'follow_links' => 0, 'force_write' => 0, 'set_permission' => \&File::NCopy::u_chmod, 'file_check' => \&File::NCopy::f_check, 'set_times' => \&File::NCopy::s_times, ); $file = File::NCopy->new(recursive => 1); $file->copy "/home/fred/public_html/temp/image.gif","/home/fred/pu +blic_html/final/image.gif";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: moving files from folder1 to folder2
by Abigail-II (Bishop) on May 15, 2004 at 00:27 UTC | |
|
Re: Re: Re: moving files from folder1 to folder2
by haoess (Curate) on May 14, 2004 at 23:26 UTC |