I am trying to open a file through python that once it is open takes you to a GUI. The link works fine when i just click on it and python seems to locate the file and open it, but the GUI doesn't appear. Please help. This is whay i have been using.

import subprocess
subprocess.Popen("C:/full/path")

I get no track back errors, but the GUI doesn't appear. Thoughts of how I can get it to appear, or what the problem might be?

Thanks

link|improve this question

75% accept rate
2  
This code does not have anything to do with a gui. If your problem is your gui code, show us your gui code. – Marcin Feb 10 at 8:59
I am just trying to get python to act as if it is clicking the link and just bring up the GUI. Just as if I was clicking on the link on my desktop. – Adam G. Feb 10 at 9:00
He's trying to start an application (which has a gui) as a subprocess. Providing more information about that application would be helpful, though. – noah1989 Feb 10 at 9:01
use the command something like start notepad myfile.txt, in the subprocess.Popen – avasal Feb 10 at 9:06
feedback

1 Answer

up vote 1 down vote accepted

The file you're trying to 'start' is a cmd script. Use this code:

subprocess.Popen("cmd.exe /k C:\full\path\to\file.cmd")

.cmd files are not executable by themselves - you need to invoke cmd.exe to execute them. This is also what windows does when you double-click the file on the desktop.

link|improve this answer
I have used OS.startfile before and it seems to start the file but the GUI doesn't seem to work. I can't get the Popen to work either. Sorry new to python – Adam G. Feb 10 at 9:12
What kind of 'file' is it? You can only 'start' executable files. – noah1989 Feb 10 at 9:31
It is a windows NT file??? – Adam G. Feb 10 at 9:44
To be more specific: What is it's name and extension, what does it contain and which application is it associated with? – noah1989 Feb 10 at 10:04
extension is .cmd, sorry not much more. it is a 3rd party app. – Adam G. Feb 10 at 10:07
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

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