import sys
import shutil
import os

def CopyWebData(dstPath):
    WebPath = "Web/"
    shutil.copytree(WebPath, dstPath, dirs_exist_ok=True)

    fullSrcPath = os.path.abspath(WebPath)   
    print("Copied %s to %s" %(fullSrcPath, dstPath))
    
def CopyWebUI2024Data(dstPath):
    WebUI2024Path = "WebUI2024/"
    shutil.copytree(WebUI2024Path, dstPath, dirs_exist_ok=True)

    fullSrcPath = os.path.abspath(WebUI2024Path)   
    print("Copied %s to %s" %(fullSrcPath, dstPath))