void SALOME_NamingService::Destroy_Directory(const char* Path)
throw(ServiceUnreachable)
{
- MESSAGE("BEGIN OF Destroy_Directory" << Path);
+ MESSAGE("BEGIN OF Destroy_Directory " << Path);
Utils_Locker lock (&_myMutex);
void SALOME_NamingService::Destroy_FullDirectory(const char* Path)
throw(ServiceUnreachable)
{
+ MESSAGE("begin of Destroy_FullDirectory " << Path);
if( Change_Directory(Path) )
{
vector<string> contList = list_directory();
Destroy_Name(contList[ind].c_str());
Destroy_Directory(Path);
-
- Destroy_Name(Path);
}
}