Execute CMD Command in python after opening CMD with specific directory
Opening CMD with specific directory using python. In the same sequence, have to execute below CMD Command using python.
Step 2 :
py <filename> –V <variant string> -p <path to the flash files>
Step 1 :
import os
os.system("start cmd /K cd C:\\Users\\Desktop\\Folder\\File" )