Hello folks, I am using windows vista and i am trying to communicate with various processes. so when i do
import subprocess proc=subprocess.Popen('cmd.exe') --This opens the command prompt But when i do proc=subprocess.Popen('netscan.exe') it gives an error Traceback (most recent call last): File "<pyshell#11>", line 1, in <module> proc =subprocess.Popen('netscan.exe') File "C:\Python25\lib\subprocess.py", line 594, in __init__ errread, errwrite) File "C:\Python25\lib\subprocess.py", line 816, in _execute_child startupinfo) WindowsError: [Error 2] The system cannot find the file specified However "netscan.exe" is present on my system. Some please explain why does this happens? Thanks in advance Aditya
-- http://mail.python.org/mailman/listinfo/python-list