walking along and processing files in directory in python

前端 未结 3 838
时光说笑
时光说笑 2021-01-07 01:27

I have huge data in a directory tree format like:
c:/user/name/class/std/section I to VI [all section has individual folder i.e. 6 folder in total and all folder h

3条回答
  •  無奈伤痛
    2021-01-07 02:05

    Addressing Abhisek's comment on Aragon's solution:

    import os folder = 'C:'

    for root, dirs, files in os.walk(folder):
        for name in files:
            (base, ext) = os.path.splitext(name)
            if ext in "csv":
                print os.path.join(root, name)
    

提交回复
热议问题