generally in PowerShell I running command:
cd C:\Users\aaa\Desktop\File Namee\
then I am executing program with specific parameters:
.\program.exe /F:aa.dvl /PPP_ZZZ
and it works, now my question, how to execute it by python script ? I tried subprocess and os.system but it doesn't work for me.
file = ['C:\\Users\\aaa\\Desktop\\File Namee\\', '.program.exe/F:aa.dvl /PPP_ZZZ']
subprocess.call(file)