在python编程中,经常遇到需要操作文件或者目录,在操作之前需要判断该文件或目录是否存在,可以通过python os模块中的path来进行判断。
实例
import os
path = "E:\\test"
# 首先判断路径是否存在.
if os .path.exists(path):
if os.path.isdir(path):
print("path is dir.")
elif os.path.isfile(path):
print("path is file.")
else:
print("other...")
else:
print("path not exist.")
更多可以查看python 文件操作.
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
喜欢就支持以下吧