hi all,
I am not sure why the following code is not working in my perl script....
any hint?
my $xcopy = $ENV{'systemroot'} . '\\system32\\xcopy.exe';
$srcpath= 'y:\\default\\main\\BRANCH\WORKAREA\......\\timeline.swf';
$destpath= 'y:\\default\\main\\.BRANCH\WORKAREA\...\\about';
$mycmd= qq{("$xcopy" "$srcpath" "$destpath" /y)};
eval{
system ($mycmd);
};
if ($
@) {
print "Something went wrong - $
@\n";
}
thx in advance...