Check if directory was actually created

This commit is contained in:
Andy Cedilnik 2002-10-06 18:56:09 -04:00
parent 396f916a42
commit 8fd2ec6e91
1 changed files with 4 additions and 0 deletions

View File

@ -186,6 +186,10 @@ bool cmSystemTools::MakeDirectory(const char* path)
return false;
}
}
if(!cmSystemTools::FileExists(path))
{
return false;
}
return true;
}