このコマンドをサブプロセスで実行するにはどうすればよいですか?
私は試した:
proc = subprocess.Popen(
'''ECHO bosco|"C:\Program Files\GNU\GnuPG\gpg.exe" --batch --passphrase-fd 0 --output "c:\docume~1\usi\locals~1\temp\tmptlbxka.txt" --decrypt "test.txt.gpg"''',
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
)
stdout_value, stderr_value = proc.communicate()
しかし得た:
Traceback (most recent call last):
...
File "C:\Python24\lib\subprocess.py", line 542, in __init__
errread, errwrite)
File "C:\Python24\lib\subprocess.py", line 706, in _execute_child
startupinfo)
WindowsError: [Errno 2] The system cannot find the file specified
私が気づいたこと:
- Windowsコンソールでコマンドを実行すると正常に機能します。
- ECHOボスコを外せば| 部分的には、上記のpopen呼び出しで正常に実行されます。したがって、この問題はエコーまたは|に関連していると思います。