przemowoAnalizator/negativeSongs/appendTxtToFiles.py.txt

5 lines
145 B
Plaintext
Raw Normal View History

2020-01-09 21:13:45 +01:00
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"')