遍历mac系统访达文件时候要注意了
Posted lyzz1314
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了遍历mac系统访达文件时候要注意了相关的知识,希望对你有一定的参考价值。
遍历mac系统访达文件时候要注意了,每个文件夹会多出来一个隐藏文件.DS_Store,是用来储存文件夹配置信息的
import os
a,*b = os.walk(root_path) # a--> (root_path, children dirnames, children files)
files = a[-1]
for file in files:
if file == ‘.DS_Store‘:
continue
以上是关于遍历mac系统访达文件时候要注意了的主要内容,如果未能解决你的问题,请参考以下文章