I want to find the extensions for all files with the same name in a folder. So for example, if a directory contains 2 files named test.csv and test.txt. I want the program to return a list containing ".txt" and ".csv".
I have used:
glob.glob(file_name + '*')
which works but is quite slow (0.03 seconds) when the folder contains many files. Is there some faster way of doing this in python?