import SALOMEDS
import VISU
import os
+import sys
medFile = os.getenv("DATA_DIR") + "/MedFiles/fra.med"
file_new = str+'/VISU_005_new.hdf'
-if sys.platform != "win32":
+if not sys.platform == "win32":
command = "mv " + file + " " + file_new
else:
command = "move /Y " + file + " " + file_new
else : print "OK"
# Remove the study file
-if sys.platform != "win32":
+if not sys.platform == "win32":
command = "rm -r " + file
else:
command = "del /F " + file