| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
9年前发布

python 判断文件、文件夹是否存在

>>> import os  >>> os.path.exists('d:/assist')  True  >>> os.path.exists('d:/assist/getTeacherList.py')  True  >>> os.path.isfile('d:/assist')  False  >>> os.path.isfile('d:/assist/getTeacherList.py')  True  >>> os.makedirs('d:/assist/set')  >>> os.path.exists('d:/assist/set')  True