From a2f461a4d3c5bd4db3660f6437d00c76fc2e1b27 Mon Sep 17 00:00:00 2001 From: eap Date: Thu, 15 Mar 2012 08:51:54 +0000 Subject: [PATCH] 0021208: EDF 1138 SMESH: Performance issue when loading SMESH with an hdf file containing a big mesh - std::string command = "rm -f "; + std::string command = "rm -rf "; --- src/Container/Container_i.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Container/Container_i.cxx b/src/Container/Container_i.cxx index ca31feb8e..f0e45ab2b 100644 --- a/src/Container/Container_i.cxx +++ b/src/Container/Container_i.cxx @@ -1755,7 +1755,7 @@ void Engines_Container_i::clearTemporaryFiles() #ifdef WIN32 std::string command = "del /F "; #else - std::string command = "rm -f "; + std::string command = "rm -rf "; #endif command += *it; system( command.c_str() ); -- 2.39.2