I have some link files on windows, then I put them in a folder, I want to rename them as 0 1 2 ... , so windows can sort them automatically.
I tried os.rename('src.txt.link', '0')
, but the result is that the "0" file can not be opened.
Is there an another python api to do this?