我正在尝试从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调用?