1
0
mirror of https://github.com/minoplhy/filters-maker.git synced 2025-02-23 08:44:51 +00:00
filters-maker/build_make.py

14 lines
459 B
Python
Raw Normal View History

2021-08-20 23:41:05 -07:00
import os
import glob
import shutil
def filepath_mass_changer(Version ,path ,apapath, extension="txt"):
2021-11-05 22:03:04 +07:00
f = glob.glob(os.path.join(path,"*."+extension))
2021-08-20 23:41:05 -07:00
for filename in f:
s = os.path.basename(filename)
os.rename(filename, os.path.join(path, Version + '_' + s ))
f = glob.glob(os.path.join(path,"*."+extension))
2021-08-21 23:43:24 +07:00
for filename in f:
s = os.path.basename(filename)
2021-11-05 22:03:04 +07:00
shutil.copy2(os.path.join(path,s), apapath)