The files are different, because they lie in different paths. Change 1, the others will not change.
I put a.txt and b.txt in the main folder and in 3 subfolders.
If you really want to do this, (I think it is unescessary), maybe like this:
from pathlib import Path
def myApp():
mydir = Path('/home/pedro/temp/')
file_name_list = [filename.name for filename in mydir.rglob("*") if filename.is_file()]
len(file_name_list) # 95
# can't do this with a generator can't use .count(f)
duplicates = [f for f in file_name_list if file_name_list.count(f) > 1]
# get tuples of name and number of duplicates
duplicates = [(f, file_name_list.count(f)) for f in file_name_list if file_name_list.count(f) > 1]
# get rid of the duplicates in duplicates
duplicates_set = set(duplicates)
# can't change sets so convert the set to a list
dl = list(duplicates_set)
# now change each tuple in dl to a list
# because lists are mutable
for i in range(len(dl)):
dl[i] = list(dl[i])
# a generator to get all file names
file_name_gen = (filename for filename in mydir.rglob("*") if filename.is_file())
# for each file name look if it is 1 of the lists in dl
for f in file_name_gen:
for d in dl:
if d[0] == f.name:
print(f.name)
newname = f.rename(Path(f.parent, f"{f.stem}_{d[1]}_{f.suffix}"))
print(newname)
# reduce the duplicate count by 1
d[1] = d[1] - 1
Now, the numbering starts from the highest number for each subset of different duplicate files and decreases.
Output:
myApp()
a.txt
/home/pedro/temp/a_4_.txt
b.txt
/home/pedro/temp/b_4_.txt
a.txt
/home/pedro/temp/arxiv.org/a_3_.txt
b.txt
/home/pedro/temp/arxiv.org/b_3_.txt
a.txt
/home/pedro/temp/asteriskmag.com/a_2_.txt
b.txt
/home/pedro/temp/asteriskmag.com/b_2_.txt
a.txt
/home/pedro/temp/20BE/a_1_.txt
b.txt
/home/pedro/temp/20BE/b_1_.txt