bat file to run command code example
Example 1: windows how to execute bat file
go to the file location:
>cd file_location
write file name + extension:
>file.cmd
Example 2: how to run bat file without effect main code
import subprocess
from subprocess import Popen
import time
from multiprocessing import Process,freeze_support
def run_batfile(name='world'):
subprocess.call(["launch_pg.bat"])
if __name__ == '__main__':
p = Process(target=run_batfile)
p.start()
count = 0
while True:
count+=1
print(count)
time.sleep(1)