CoolFace
Apppublic

DEVessi/devops_sandbox

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
move.py18 linesDownload Raw Back to root
1import os2import shutil3 4src = r"e:\programs2\openenv(RL)\devops_sandbox"5dst = r"e:\programs2\openenv(RL)"6 7for item in os.listdir(src):8    s = os.path.join(src, item)9    d = os.path.join(dst, item)10    if os.path.exists(d):11        if os.path.isdir(d):12            shutil.rmtree(d, ignore_errors=True)13        else:14            os.remove(d)15    shutil.move(s, d)16 17print("Moved successfully")18