如何将情节保存到新文件夹

How to save plot to new Folder

我想将我的 matplotlib 图保存到新生成的文件夹中。 我只是不明白将我的情节保存到这条路径...

到目前为止,这是我的代码:

now = datetime.now()
current_time = now.strftime("%m_%d_%Y, %H_%M_%S")
dir_name = "Messdaten " + current_time

os.mkdir(dir_name)

my_path = os.path.abspath(os.getcwd())
    
save_path = my_path + "\" + dir_name

path = Path(save_path)

plt.savefig(path)

如有任何帮助,我将不胜感激!

尝试使用 os 模块:

import os
my_path = os.path.abspath(__file__) # Figures out the absolute path 
fig.savefig(my_path + '/Sub Directory/graph.png')

或:

script_dir = os.path.dirname(__file__)
results_dir = os.path.join(script_dir, 'Results/')
sample_file_name = "sample"

os.makedirs(results_dir, exist_ok=True)
plt.savefig(os.path.join(results_dir, sample_file_name))