如何添加目录或将目录添加到当前路径并使用文件



我想在当前路径上制作一个目录,并在该路径中添加excel文件,并在脚本中使用excel文件。...请帮助目前我在做

my_excel_file = Path(sys.argv[2])
if not my_excel_file.is_file():
    print ("Excel File not exist")
    logging.error("Excel File not exist")
    exit(-2)

,但我想在当前路径中添加目录'/tmp/old excel/n.xlsx'并使用N.xlsx文件

此代码如果不存在,将创建一个目录和文件。您也可以写入该文件:

import os
filename = "tmp/old excel/n.xlsx"
if not os.path.exists(os.path.dirname(filename)):
       os.makedirs(os.path.dirname(filename))
with open(filename, "w") as f:
   f.write("content")

相关内容

  • 没有找到相关文章

最新更新