


# https://www.globalsino.com/ICs/
# Execute a Command on Command Prompt Window


import subprocess

myPath = r"C:\GlobalSino20230219\ICs\images3"
command = 'BatOne.bat'
subprocess.Popen('start cmd /k '+ command, cwd=myPath, shell=True)


