diff --git a/src/OSD/OSD_Directory.cxx b/src/OSD/OSD_Directory.cxx index 0439f288fb..7db3ac207b 100644 --- a/src/OSD/OSD_Directory.cxx +++ b/src/OSD/OSD_Directory.cxx @@ -43,18 +43,26 @@ TCollection_AsciiString aBuffer; myPath.SystemName(aBuffer); umask ( 0 ); status = mkdir (aBuffer.ToCString(), (mode_t)internal_prot); - if (status == -1) - if (errno != EEXIST) { - Standard_PCharacter err_message; - - err_message = new Standard_Character [255]; - sprintf (err_message, - "OSD_Directory::Build Directory \"%s\"", + if (status == -1 && errno == ENOENT) + { + OSD_Path aSupPath = myPath; + aSupPath.UpTrek(); + aSupPath.SetName (myPath.TrekValue (myPath.TrekLength())); // incredible, but required! + OSD_Directory aSupDir (aSupPath); + aSupDir.Build (Protect); + if (aSupDir.Failed()) + { + myError = aSupDir.myError; + return; + } + status = mkdir (aBuffer.ToCString(), (mode_t)internal_prot); + } + if (status == -1 && errno != EEXIST) { + Standard_Character err_message[2048]; + Sprintf (err_message, "OSD_Directory::Build Directory \"%.2000s\"", aBuffer.ToCString()); - - myError.SetValue(errno, Iam, err_message); - delete err_message; - } + myError.SetValue (errno, Iam, err_message); + } } OSD_Directory OSD_Directory::BuildTemporary(){ @@ -120,18 +128,48 @@ void OSD_Directory :: Build (const OSD_Protection& Protect) { if ( dirName.IsEmpty () ) Standard_ProgramError :: Raise ( "OSD_Directory :: Build (): incorrect call - no directory name"); - TCollection_ExtendedString dirNameW(dirName); - if (Exists() || CreateDirectoryW (dirNameW.ToWideString(), NULL)) - { + + Standard_Boolean isOK = Exists(); + if (! isOK) + { + // myError will be set to fail by Exists() if intermediate dirs do not exist + myError.Reset(); + + // create directory if it does not exist; + TCollection_ExtendedString dirNameW(dirName); + if (CreateDirectoryW (dirNameW.ToWideString(), NULL)) + { + isOK = Standard_True; + } + // if failed due to absence of intermediate directories, create them recursively + else if (GetLastError() == ERROR_PATH_NOT_FOUND) + { + OSD_Path aSupPath = myPath; + aSupPath.UpTrek(); + aSupPath.SetName (myPath.TrekValue (myPath.TrekLength())); // incredible, but required! + OSD_Directory aSupDir (aSupPath); + aSupDir.Build (Protect); + if (aSupDir.Failed()) + { + myError = aSupDir.myError; + return; + } + isOK = (CreateDirectoryW (dirNameW.ToWideString(), NULL) != 0); + } + } + + if (isOK) + { #ifndef OCCT_UWP - SetProtection(Protect); + SetProtection(Protect); #else - (void)Protect; + (void)Protect; #endif - } else - - _osd_wnt_set_error ( myError, OSD_WDirectory ); - + } + else + { + _osd_wnt_set_error ( myError, OSD_WDirectory ); + } } // end OSD_Directory :: Build OSD_Directory OSD_Directory :: BuildTemporary () { diff --git a/src/OSD/OSD_FileNode.cxx b/src/OSD/OSD_FileNode.cxx index 5933a26c96..8354eee290 100644 --- a/src/OSD/OSD_FileNode.cxx +++ b/src/OSD/OSD_FileNode.cxx @@ -445,7 +445,9 @@ void OSD_FileNode::SetPath ( const OSD_Path& Name ) { //purpose : //======================================================================= -Standard_Boolean OSD_FileNode::Exists () { +Standard_Boolean OSD_FileNode::Exists () +{ + myError.Reset(); Standard_Boolean retVal = Standard_False;; TCollection_AsciiString fName; diff --git a/src/Resource/Resource_Manager.cxx b/src/Resource/Resource_Manager.cxx index f6752dbe5b..21c040489b 100644 --- a/src/Resource/Resource_Manager.cxx +++ b/src/Resource/Resource_Manager.cxx @@ -252,7 +252,7 @@ Standard_Boolean Resource_Manager::Save() const { try { OCC_CATCH_SIGNALS - Dir.Build(OSD_Protection(OSD_RX, OSD_RWX, OSD_RX, OSD_RX)); + Dir.Build(OSD_Protection(OSD_RX, OSD_RWXD, OSD_RX, OSD_RX)); } catch (Standard_Failure) { Status = Standard_False; diff --git a/tests/bugs/fclasses/bug181_1 b/tests/bugs/fclasses/bug181_1 index b7c434131c..c208cbfd54 100644 --- a/tests/bugs/fclasses/bug181_1 +++ b/tests/bugs/fclasses/bug181_1 @@ -27,4 +27,8 @@ if { ${status} == "TRUE"} then { puts "OCC181: Error" } +if { ! [file exists ${tmp}/1/OCC181] } { + puts "Error: user resource file is not found!" +} + file delete -force ${tmp}/1 diff --git a/tests/bugs/fclasses/bug181_2 b/tests/bugs/fclasses/bug181_2 index c07ff4f7fd..3c84e39623 100644 --- a/tests/bugs/fclasses/bug181_2 +++ b/tests/bugs/fclasses/bug181_2 @@ -1,5 +1,3 @@ -puts "TODO OCC12345 ALL: OCC181: Error" - puts "========" puts "OCC181" puts "OCC701" @@ -29,4 +27,8 @@ if { ${status} == "TRUE"} then { puts "OCC181: Error" } +if { ! [file exists ${tmp}/2/2/3/OCC181] } { + puts "Error: user resource file is not found!" +} + file delete -force ${tmp}/2