易学智能's Archiver
易学智能论坛
›
Python开发
› 四、python判断文件夹是否存在
shaoheshaohe
发表于 2019-4-29 15:41:30
四、python判断文件夹是否存在
>>> import os
>>>
>>>
>>> tobecheckdir = r'/home/tim/workspace'
>>> os.path.isdir(tobecheckdir)
True
>>>
页:
[1]
查看完整版本:
四、python判断文件夹是否存在