I have multiple files in a directory :
00- filename1
01- filename2
02- filename3
03- filename4
etc. I am trying to replace 00 in the file name with 01, and 01 ==> 02 Using Python. which would result in the following:
01- filename1
02- filename2
03- filename3
04- filename4