0

最初に同じフォルダー内のファイルを開く必要があるバッチ ファイルを実行できるスクリプトを作成しています。私の現在のコードは次のとおりです。

from subprocess import Popen
p = Popen("Mad8dl.bat <RUNTHISTO.txt>", cwd=r"C:\...\test")
stdout, stderr = p.communicate()

ここで、...はフォルダーへの単なるパスです。ただし、実行するたびに構文エラーが発生します。

The syntax of the command is incorrect

構文に関するヘルプは大歓迎です。

4

1 に答える 1