Copy Text::CSV module into source and change to use it, as we can't rely on it appearing in the Perl library when Perl 5.6.1 is installed.
#!perl -w
use strict;
# Assume that all rnd repositories are delivered onto the build machine in \rnd\category\name\epoc32\...
my @rndRepositories = glob "/rnd/*/*";
foreach (@rndRepositories)
{
s{/}{\\}g;
system("xcopy /Q/C/I/Y/E $_\\epoc32 \\epoc32 > nul:");
}