Extracting extension from filename in Python

后端 未结 24 2179
感情败类
感情败类 2020-11-22 13:23

Is there a function to extract the extension from a filename?

24条回答
  •  太阳男子
    2020-11-22 14:15

    def NewFileName(fichier):
        cpt = 0
        fic , *ext =  fichier.split('.')
        ext = '.'.join(ext)
        while os.path.isfile(fichier):
            cpt += 1
            fichier = '{0}-({1}).{2}'.format(fic, cpt, ext)
        return fichier
    

提交回复
热议问题