if ( files == null )
{
//workingDirectory isn't a directory but a file. Not possible in theory.
String msg = workingDirectory.getAbsolutePath() + " isn't a directory but a file.";
getLogger().error( msg );
throw new ContinuumException( msg );
}
setWorkingDirectoryExist( context, files.length > 0 );
}