我正在使用popen打開一個寫入管道並將命令發送到應用程序。問題是,只有在關閉管道時纔會將命令發送給應用程序。 FILE * fp = open(target_app, "w");
fwrite(command, 1, command.size(), fp);
getchar(); //wait for a key, because I don't want to terminate the
可能重複: Running a process in pythonw with Popen without a console 我使用的是Windows上的Python 2.7自動使用Dcraw執行和PIL批量RAW轉換。 問題是我打開一個Windows控制檯,每當我運行dcraw(這發生每隔幾秒鐘)。如果我使用.py作爲.py運行腳本,它不那麼煩人,因爲它只打開主窗口,但我更願意僅顯示GUI。