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检查目录是否存在,如果不存在则创建的主要内容,如果未能解决你的问题,请参考以下文章