Python Glob without the whole path - only the filename

前端 未结 7 1873
死守一世寂寞
死守一世寂寞 2020-12-23 10:47

Is there a way I can use glob on a directory, to get files with a specific extension, but only the filename itself, not the whole path?

7条回答
  •  礼貌的吻别
    2020-12-23 11:24

    map(os.path.basename, glob.glob("your/path"))
    

    Returns an iterable with all the file names and extensions.

提交回复
热议问题