首页 > 编程语言 > 详细

Mac 下 Python os.listdir 出现 invalid literal for int() with base 10 错误

时间:2016-03-16 01:15:56      阅读:496      评论:0      收藏:0      [点我收藏+]

因为 Mac 下的 .DS_Store 也会包含进去

解决方法:

def listdirInMac(path):
    os_list = os.listdir(path)
    for item in os_list:
        if item.startswith(‘.‘) and os.path.isfile(os.path.join(path, item)):
            os_list.remove(item)
    return os_list

 

Mac 下 Python os.listdir 出现 invalid literal for int() with base 10 错误

原文:http://www.cnblogs.com/yaoshi/p/5281859.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!