Hi guys,
I have a problem, that struggling already a coupe of days

May be somebody knows solution?
One of the task in my workflow is to copy a created html file from 1 folder to another. I use XCOPY to do it. My script is like this:
my $copyFrom = "\\\\XXXX01\\default\\main\\Internet\\WORKAREA\\Home\\documents\\test.html";
my $copyTo = "\\\\XXXX02\\dfsroot\\Shared\\CopyDocs\\";
my $cmd = "XCOPY $copyFrom $copyTo /Y/S/I";
system($cmd);
This script work fine in cmd and separate perl file, but when I put it in wfXXX.ipl it does not copy files at all.
Thanks in advance for your help.
Alla