下面是Python中使用os模块判断文件夹是否存在的完整攻略:
首先,我们需要导入os模块:
import os
接着,我们可以使用os.path.isdir()函数判断文件夹是否存在。该函数接收一个参数,即待判断的文件夹路径,如果存在则返回True,否则返回False。示例代码如下:
folder_path = '/path/to/folder'
if os.path.isdir(folder_path):
print('Folder exists')
else:
print('Folder does not exist')
上述代码中,我们首先定义了文件夹路径变量folder_path,然后使用if语句判断该路径对应的文件夹是否存在,如果存在则输出“Folder exists”,否则输出“Folder does not exist”。
另外,还可以使用os.path.exists()函数判断文件夹是否存在,该函数同样接收一个参数,如果存在则返回True,否则返回False。示例代码如下:
folder_path = '/path/to/folder'
if os.path.exists(folder_path):
print('Folder exists')
else:
print('Folder does not exist')
由于os.path.exists()函数不仅可以判断文件夹是否存在,还可以判断文件是否存在,因此比os.path.isdir()函数更通用一些。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:python 用os判断文件夹是否存在 - Python技术站