import os # 目录路径 dir_path = '/path/to/directory' # 检查目录是否存在 if os.path.exists(dir_path): print("目录存在") else: print("目录不存在")