通过Python 3.5从批处理文件中调用可执行文件

时间:2016-11-07 21:22:12

标签: python windows python-3.x batch-file

我正在尝试从Python 3.5调用批处理文件:

批处理文件的内容是:

DataConverter.exe "\\BARYON-RL\MarketData\Raw\CFFEX\20161107" ".*.csv" "%MarketData%\CFFEX" "format_data_cffex_ctp.json" "HDF5"

当我手动运行批处理文件时运行正常,所以没有问题;但是,当我在Python 3.5中运行它时使用:

call('C:\\Users\\HP\\Dropbox\\TeamFolder\\Data\\Convert_Data_HDF5_SHFE_CTP.bat')

我收到错误:

'DataConverter.exe' is not recognized as an internal or external command'

为什么它不起作用,因为我从Python调用?

0 个答案:

没有答案