HI,
I am trying to run a script which archives the feed file that gets read in within BODI. the script looks something like this:
ARCHIVE FEED FILES #######################################
A batch file will be execeuted to archive the feedfiles
$String1 = 'C:\TestFolder\ARCHIVE_FILE.cmd';
$ArchiveFilePath = 'C:\TestFolder\Archive\Test1';
$FeedFilePath= 'C:\TestFolder\Feeds\Test1\TestFile.txt';
exec( $String1,$FeedFilePath $ArchiveFilePath, 8);
The BAT file defined in $String1 is:
--rem created by Azeem Farooqui
move %1 %2
Unfortunately BODI keeps on throwing an error saying that the syntax isn't correct.
Does anyone know which syntax to use in this case?
Please not I am running BODI of windows.
Thanks