python判断当前文件夹中是否存在指定名称的文件
时间: 2024-09-17 08:02:37 浏览: 47
Python判断一个文件夹内哪些文件是图片的实例
在Python中,你可以使用`os`模块的`os.path.exists()`函数来检查一个文件(包括目录)是否存在。如果你想判断当前工作目录(即`os.getcwd()`返回的路径)中是否存在某个特定名称的文件,可以这样做:
```python
import os
file_name_to_check = "your_file_name.txt"
if os.path.exists(os.path.join(os.getcwd(), file_name_to_check)):
print(f"{file_name_to_check} 存在于当前文件夹中.")
else:
print(f"{file_name_to_check} 不在当前文件夹中.")
```
这里,`os.path.join(os.getcwd(), file_name_to_check)`是将当前工作目录和文件名组合成完整的路径。如果该路径存在,`os.path.exists()`会返回`True`,否则返回`False`。
将`"your_file_name.txt"`替换为你想要查找的实际文件名即可。
阅读全文