in reply to Re: Replication of directory subtrees
in thread Replication of directory subtrees

Yes, It is going to be subroutine within a CGI application that should run both under MsWin32 and Unix.
Thanks.
  • Comment on Re: Re: Replication of directory subtrees

Replies are listed 'Best First'.
Re: Re: Re: Replication of directory subtrees
by eduardo (Curate) on Apr 24, 2003 at 15:17 UTC
    well, in that case!
    if ($^O =~ /win32/i) { # do stuff with xcopy } else { # do stuff with cp -r }
    I am *not* advocating this solution... I just thought it would be cheesy way to do it. Please, for the love of anything you may or may not hold holy, use something like File::Find or File::NCopy instead like merlyn suggested.