@ Out, None
// the dirName is actually in workingDir/StepName/prefix => we need to go back 2 dirs
dirName = os.path.join(currentDirName, ".."+os.path.sep+".."+os.path.sep)
// copy SLAVE raven files in case they are needed
for slaveInput in self.slaveInputFiles:
// full path
slaveInputFullPath = os.path.abspath(os.path.join(dirName,slaveInput))
// check if exists
if os.path.exists(slaveInputFullPath):
slaveInputBaseDir = os.path.dirname(slaveInput)
slaveDir = os.path.join(currentDirName,slaveInputBaseDir.replace(currentDirName,""))
if not os.path.exists(slaveDir):