Add jasofix/README.md

This commit is contained in:
2024-10-12 19:37:52 -04:00
parent 1369f68048
commit 017c8728d7

11
jasofix/README.md Normal file
View File

@@ -0,0 +1,11 @@
```python
def jasofix(directory):
from os.path import join
import os, unicodedata
for root, dirs, files in os.walk(directory):
for file in files:
if file != (normalized := unicodedata.normalize('NFC', file)):
os.rename(join(root, file), join(root, normalized))
print(normalized)
```