所以,我按如下方式循环浏览我的文件和文件夹:
for root, dirs, files in os.walk(img):
我们如何避免在此类搜索中包含current
(。)和parent
( .. )目录?
感谢。
答案 0 :(得分:0)
os.walk()
不会翻阅您的父目录(我假设您的意思是img
的父级),所以您不必担心。如果您只想跳过分配给img
的当前目录,那很简单:
for root, dirs, files in os.walk(img):
if root == img: continue
# your code for the children dirs and files here #