diff --git a/build_make.py b/build_make.py new file mode 100644 index 0000000..e007df4 --- /dev/null +++ b/build_make.py @@ -0,0 +1,10 @@ +import os +import glob +import shutil + +def filepath_mass_changer(Version ,path ,apapath): + f = glob.glob(os.path.join(path,"*.txt")) + for filename in f: + s = os.path.basename(filename) + os.rename(filename, os.path.join(path, Version + '_' + s )) + shutil.copytree(path, apapath) \ No newline at end of file