for (File sourcePathEntry : newSourcePath)
{
// Make sure the entry is a directory
if (!sourcePathEntry.isDirectory())
{
problems.add(new NonDirectoryInSourcePathProblem(sourcePathEntry));
}
else
{
DirectoryID directoryId = new DirectoryID(sourcePathEntry);