przemowoAnalizator/negativeSongs/appendTxtToFiles.py.txt
emilekm2142 0340c3426a final
2020-01-09 21:13:45 +01:00

5 lines
145 B
Plaintext

import sys, glob, os
files = glob.glob('**/*', recursive=True)
for f in files:
if os.path.isfile(f):
os.system(f'mv "{f}" "{f}.txt"')