]> git.treefish.org Git - phys/latlib.git/blobdiff - writeout.cpp
Merge branch 'master' of treefish.org:~/src/latlib
[phys/latlib.git] / writeout.cpp
index 73adfa684ddd79eda8191cc1b448c74220ccdce2..2290a941cb343b72a0c4afe224903b33a51dbf55 100644 (file)
@@ -9,6 +9,7 @@
 #include <sstream>
 #include <dirent.h>
 #include <errno.h>
+#include <unistd.h>
 
 using namespace std;
 
@@ -26,7 +27,7 @@ writeout::writeout(const string& wdir, const string& signature,
   if(wdir != ""){
     numprocs = procs;
     sprintf(cRank, "%d", rank);
-    fulldir = wdir + "/" + tstamp(timestamp) + "_" + signature;
+    fulldir = wdir + "/" + tstamp(timestamp) + "_" + signature + ".tmp";
     mkdir( fulldir.c_str(),  0775);
 
     if(rank>0) of.open( (fulldir + "/rank" + cRank + ".tmp").c_str() );
@@ -69,6 +70,7 @@ writeout::~writeout()
            }
          of << "#end" << endl << flush;
          of.close();
+         rename( fulldir.c_str(), fulldir.substr(0, fulldir.length()-4).c_str() );
        }
       else
        {