在 Python 中,你可以使用 os.path 模块的 exists() 函数来检查文件或目录是否存在。以下是一个例子: import os file_path = "path_to_your_file" if os.path.exists(file_path): print("F..