OSError: cannot identify image file './out_img/.DS_Store'
MAC 系统的 FIddler 读取文件会自动创造.DS_Store 文件,存储目录的自定义属性
1.cd 到当前目录 2.查找.DS_Store 文件是否存在 find ./ -name ".DS_Store" 3.删除.DS_Store 文件 find ./ -name ".DS_Store" -delete