Executing a subprocess fails

后端 未结 2 1678
闹比i
闹比i 2020-11-27 18:11

I tried to call a process via Python with several arguments. Executing the batch file itself works fine for me but translating it into Python makes me scream. Here the conte

相关标签:
2条回答
  • 2020-11-27 18:34

    First, you don't need all those quotes. So remove them. You only need quotes around parameters that have a filename when that filename has a space (stupidly, Windows does this often).

    Your parameters are simply a list of strings, some of which need quotes. Because Windows uses non-standard \ for a path separator, use "raw" strings for these names.

    params = [
        r'"C:\Program Files\Systems\Emb Work 5.4\arm\bin\mpr.dll"',
        r'"C:\Program Files\Systems\Emb Work 5.4\arm\bin\ajl.dll"',
        r'"C:\Documents and Settings\USER\Desktop\abc.out"',
        "--backend",
        "-B", 
        "--endian=little",
        "--cpu=Cortex",
        "--fpu=None",
        "-p",
        r'"C:\Program Files\unknown\abc.ddf"',
        "--drv_verify_download",
        "--semihosting",
        "--device=STM32F10xxB",
        "-d",
        "jjftk",
        "--drv_communication=USB0",
        "--speed=auto",
        "--initial_speed=32",
        "--reset_strategy=0,0"]
    

    Use something like

    program = r'"C:\Program Files\Systems\Emb Work 5.4\common\bin\run"'
    subprocess.Popen( [program]+params )
    
    0 讨论(0)
  • 2020-11-27 18:51

    To execute a batch file in Windows:

    from subprocess import Popen
    p = Popen("batchfile.bat", cwd=r"c:\directory\containing\batchfile")
    stdout, stderr = p.communicate()
    

    If you don't want to execute the batch file, but rather execute the command in your question directly from Python, you need to experiment a bit with the first argument to Popen.

    First of all, the first argument can either be a string or a sequence.

    So you either write:

    p = Popen(r'"C:\Program Files\Systems\Emb Work 5.4\common\bin\run" "C:\Program Files\Systems\Emb Work 5.4\arm\bin\mpr.dll" ... ...', cwd=r"...")
    

    or

    p = Popen([r"C:\Program Files\Systems\Emb Work 5.4\common\bin\run", r"C:\Program Files\Systems\Emb Work 5.4\arm\bin\mpr.dll", ...], cwd=r"...")
    # ... notice how you don't need to quote the elements containing spaces
    

    According to the documentation:

    On Windows: the Popen class uses CreateProcess() to execute the child program, which operates on strings. If args is a sequence, it will be converted to a string using the list2cmdline() method. Please note that not all MS Windows applications interpret the command line the same way: list2cmdline() is designed for applications using the same rules as the MS C runtime.

    So if you use a sequence, it will be converted to a string. I would probably try with a sequence first, since then you won't have to quote all the elements that contain spaces (list2cmdline() does that for you).

    For troubleshooting, I recommend you pass your sequence to subprocess.list2cmdline() and check the output.

    Edit:

    Here's what I'd do if I were you:

    a) Create a simple Python script (testparams.py) like this:

    import subprocess
    params = [r"C:\Program Files\Systems\Emb Work 5.4\common\bin\run.exe", ...]
    print subprocess.list2cmdline(params)
    

    b) Run the script from the command line (python testparams.py), copy and paste the output to another command line, press enter and see what happens.

    c) If it does not work, edit the python file and repeat until it works.

    0 讨论(0)
提交回复
热议问题