How can I safely create a nested directory?

前端 未结 27 3084
旧时难觅i
旧时难觅i 2020-11-22 00:07

What is the most elegant way to check if the directory a file is going to be written to exists, and if not, create the directory using Python? Here is what I tried:

27条回答
  •  余生分开走
    2020-11-22 00:30

    Use this command check and create dir

     if not os.path.isdir(test_img_dir):
         os.mkdir(test_img_dir)
    

提交回复
热议问题