createprocess

Does Python's subprocess.Popen accept spaces in paths?

Does Python's subprocess.Popen accept spaces in paths? Question: I have a simple Python script: log(“Running command: ” + str(cmd)) process = subprocess.Popen( cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE, close_fds=close_fds) I’m executing it on Windows on the same python version 2.6.1, but on different VMs. One is Windows Server 2008 Enterprise, the second one it Windows Server Enterprise …

Total answers: 5