我有2个exe文件。file1.exe和file2.exe。我需要一个包含前两个文件的file3.exe。当运行file3时,file1将运行,如果file1返回true,file2将运行。我该怎么做?
发布于 2012-11-03 11:06:03
如果是.bat文件
file1.exe
IF NOT ERRORLEVEL 0 GOTO error1
file2.exe
:error1https://stackoverflow.com/questions/13208524
复制相似问题