Skip to content

Instantly share code, notes, and snippets.

View xAlpharax's full-sized avatar
🖤

Alphara xAlpharax

🖤
View GitHub Profile
@xAlpharax
xAlpharax / rename_dup.py
Created August 1, 2020 13:40
Rename same filenames from entire directory
import os
import filecmp
dirnow = os.getcwd()
print("Now in: {} \n".format(dirnow))
names_seen = list()
def renamestuff(path):
n = 1