文件名称:python爬虫自动创建文件夹的功能
文件大小:38KB
文件格式:PDF
更新时间:2024-01-21 10:55:03
python python爬虫 root
该爬虫应用了创建文件夹的功能: #file setting folder_path = D:/spider_things/2016.4.6/ + file_name +/ if not os.path.exists(folder_path): os.makedirs(folder_path) 上面代码块的意思是: os.path.exists(folder_path)用来判断folder_path这个路径是否存在,如果不存在,就执行“os.makedirs(folder_path)”来创建这个路径 补充:下面看下Python 爬虫 —— 文件及文件夹操作 0. 文件名、路径信息、