【发布时间】:2013-03-01 01:30:49
【问题描述】:
我的批处理文件的代码如下所示:
xcopy D:\FastTools\FTOutput\common\Displays D:\FastTools\TestTr
PAUSE "Copy is over "
call D:\FastTools\FTOutput\common\QLI\GP1039_command
PAUSE "QLI is over "
收到以下消息:
C:\Users\Administrator\Desktop>CALL D:\FastTools\FTOutput\common\QLI\GP1039_command
'Version' is not recognized as an internal or external command, operable program or batch file.
C:\Users\Administrator\Desktop>dssqld -r GP1039_object
CRL-E-ENOENT, no such file or directory DSSQ-E-QLD_FILOPN,
The input file could not be opened or read (file = 'GP1039_object.qli')
注意:其中 GP1039_command 是另一个调用其他 QLI 文件的批处理文件
问题:为什么我会收到上述消息。
【问题讨论】:
-
您收到这些消息是因为这些文件(
GP1039_command和DSSQ-E-QLD_FILOPN)不在您假设的位置。 -
@PA, GP1039_Command 很好,但它似乎是运行版本,其实不是。
-
我相信你真的需要给我们看
D:\FastTools\FTOutput\common\QLI\GP1039_command.bat
标签: batch-file call