Choose a file starting with a given string

前端 未结 6 831
故里飘歌
故里飘歌 2020-12-13 12:38

In a directory I have a lot of files, named more or less like this:

001_MN_DX_1_M_32
001_MN_SX_1_M_33
012_BC_2_F_23
...
...

In Python, I ha

6条回答
  •  伪装坚强ぢ
    2020-12-13 12:57

    Try using os.listdir,os.path.join and os.path.isfile.
    In long form (with for loops),

    import os
    path = 'C:/'
    files = []
    for i in os.listdir(path):
        if os.path.isfile(os.path.join(path,i)) and '001_MN_DX' in i:
            files.append(i)
    

    Code, with list-comprehensions is

    import os
    path = 'C:/'
    files = [i for i in os.listdir(path) if os.path.isfile(os.path.join(path,i)) and \
             '001_MN_DX' in i]
    

    Check here for the long explanation...

提交回复
热议问题