Changed hard coded temp directory pathes to built-in tempfile gettempdir().

This commit is contained in:
Ruben Manuel Thoms 2020-09-25 15:12:28 +02:00 committed by Kristian Bendiksen
parent a536ac2626
commit d1b3e0781e
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,6 @@
# Load ResInsight Processing Server Client Library
import rips
import tempfile
# Connect to ResInsight instance
resinsight = rips.Instance.find()
@ -11,7 +12,7 @@ project = resinsight.project
wbsplots = project.descendants(rips.WellBoreStabilityPlot)
# Chose a sensible output folder
dirname = "C:/temp"
dirname = tempfile.gettempdir()
# Loop through all Well Bore Stability plots
for wbsplot in wbsplots:

View File

@ -1,5 +1,6 @@
# Load ResInsight Processing Server Client Library
import rips
import tempfile
# Connect to ResInsight instance
resinsight = rips.Instance.find()
# Example code
@ -36,7 +37,7 @@ time_step = time_steps[len(time_steps) - 1]
fracture_model_plot_collection = project.descendants(rips.FractureModelPlotCollection)[0]
fracture_model_plot = fracture_model_plot_collection.new_fracture_model_plot(eclipse_case=case, fracture_model=fracture_model, time_step=time_step)
export_folder = "/tmp/"
export_folder = tempfile.gettempdir()
fracture_model_plot.export_to_file(directory_path=export_folder)