我刚开始研究 Python,一直在尝试从 Python 运行一个外部可执行文件。
我有一个用 Fortran 编写的程序的可执行文件。假设可执行文件的名称是 flow. exe。我的可执行文件位于 C:\Documents and Settings\flow_model
中。我尝试了 os.system 和 popen 命令,但到目前为止还不能使它工作。下面的代码看起来像是打开了命令窗口,但它不会执行模型。
# Import system modules
import sys, string, os, arcgisscripting
os.system("C:/Documents and Settings/flow_model/flow.exe")
我该怎么补救?