Python searching directory, list basename of file, no extension

后端 未结 3 650
广开言路
广开言路 2021-01-25 05:45

I was wondering if there was anyway I could modify my code to only post the basename of the file, instead of the entire file including the extension.. I\'m new to python, so I d

3条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-25 06:28

    root, ext = os.path.splitext(file)
    name = os.path.basename(root)
    

    root will contain the entire path of the given file name up to where the period would be before the extension, name will only be the name of the file without the leading path.

提交回复
热议问题