I am making a GUI aplplication in Python that requires to run a cmd
prompt command.
e. g.:
import subprocess
subprocess.Popen("arp -a > arptable.txt",stdin=PIPE, stdout=PIPE,shell=Ture)
Now, after running this command, I see a small splash of cmd screen
, and a text file containing the arp
table is generated. In my application, I don't want this black screen to splash, so that the user doesn't know there's a cmd prompt
involved in the appplication.
How can I do this?