如何检查文件路径与文件名
时间: 2023-04-09 10:01:47 浏览: 104
可以使用Python中的os.path模块来检查文件路径和文件名。具体方法是使用os.path.join()函数将路径和文件名拼接起来,然后使用os.path.exists()函数检查文件是否存在。例如:
import os
file_path = os.path.join('/path/to/directory', 'filename.txt')
if os.path.exists(file_path):
print('File exists')
else:
print('File does not exist')
阅读全文