如何创建一个文件夹并在Windows中用Python将文件写入文件夹再次将这些N个文件读入Python

时间:2018-03-22 17:44:10

标签: python-3.x

在这里,我尝试从file_path获取new_folder并添加dirctry = os.path.dirname(file_path) toolSharePath = os.path.abspath(dirctry) final_directory = os.path.join(toolSharePath, r'new_folder') if not os.path.exists(final_directory): os.makedirs(final_directory,exist_ok=True) with open(final_directory, "w") as f: f.write("data") ,然后将文件写入文件夹。

{{1}}

0 个答案:

没有答案