python检查目录是否存在,如果不存在则创建

Posted Data+Science+Insight

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python检查目录是否存在,如果不存在则创建相关的知识,希望对你有一定的参考价值。

python检查目录是否存在,如果不存在则创建

 

# 检查用户主目录中是否存在目录。如果目录不存在,那么将创建一个目录。

import os  
# Import the OS module

MESSAGE = 'The directory already exists.'
TESTDIR = 'testdir'
try:
    home = os.path.expanduser("~")  
    # Set the variable home by expanding the user's set home directory
    print(home)  # Print the location

    if not os.path.exists(os.path.join(home, TESTDIR)):  
        # os.path.join() for making a full path safely
        os.makedirs(os.path.join(home, TESTDIR))  
        # If not create the directory, inside their home directory
    else:
        print(MESSAGE)
except Exception as e:
    print(e)

 

参考:https://github.com/geekcomputers/Python

参考:python判断文件和文件夹是否存在、没有则创建文件夹

参考:python 判断是否存在文件、不存在创建_python 判断目录是否存在,如果不存在则创建...

以上是关于python检查目录是否存在,如果不存在则创建的主要内容,如果未能解决你的问题,请参考以下文章

Shell 脚本 - 如果目录不存在则创建目录

Shell 脚本检查 dir 目录是不是存在然后更改路径,如果不存在则使用该名称创建 dir 并检查文件名不存在

jQuery检查Cookie是不是存在,如果不存在则创建它

检查节点是不是存在,如果不存在则创建

在 Python 嵌套中添加目录的可能性? [复制]

“如果不存在则创建表” - 如何也检查架构?