How to filter files (with known type) from os.walk?

后端 未结 10 1104
北海茫月
北海茫月 2020-12-24 12:10

I have list from os.walk. But I want to exclude some directories and files. I know how to do it with directories:

for root, dirs, files in os.wa         


        
10条回答
  •  北海茫月
    2020-12-24 12:29

    Exclude multiple extensions.

    files = [ file for file in files if not file.endswith( ('.dat','.tar') ) ]
    

提交回复
热议问题