因为 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
时间: 2024-10-02 15:26:40
因为 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