I want to call a exe from python on a 64bit version of vista. I know to use subprocess, but all the 32bit apps are store in C:\Program Files (x86)\, and it doesn't like the spaces I believe. i have tried escape characters, doesn't fire, any ideas?

link|improve this question

3  
If this is a 'spaces in the path' issue, then the 64bit/32bit is misleading... – John Weldon Dec 7 '09 at 17:30
2  
Show the sample code you've tried that fails, with the error messages it gives. – nos Dec 7 '09 at 17:31
There's a space in “Program Files” too... – bobince Dec 7 '09 at 17:40
feedback

1 Answer

up vote 1 down vote accepted
textEditorExecutablePath = 'C:\\Program Files (x86)\\Notepad2\\Notepad2.exe'
filepathToOpen = 'C:\\file.txt'
subprocess.Popen([textEditorExecutablePath, filepathToOpen])

Works for me. How are you calling Popen?

link|improve this answer
Thanks, I was actually trying to pass the args as text, not storing them in a variable – Kevin Dec 7 '09 at 19:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.