Python Glob without the whole path - only the filename

前端 未结 7 1875
死守一世寂寞
死守一世寂寞 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:49

    This might help someone:

    names = [os.path.basename(x) for x in glob.glob('/your_path')]

    0 讨论(0)
提交回复
热议问题