怎么打开一个文件另一个文件一起打开

来源:百度知道 编辑:UC知道 时间:2024/05/17 00:27:33
比如说打开A文件.B文件就一起打开了
我想让A文件和B文件一起打开
我想做到..不是中毒了..

@echo off
if NOT exist a.exe goto Fail
if NOT exist b.exe goto Fail
start a.exe
start b.exe

:Fail
echo File missing. Any key to exit.
pause>nul

把问题说明白.太模糊了

可以用记事本写个批处理文件,比如:
start c:\a.exe
start d:\b.exe
保存退出,记住,如果有路径的话,路径里不能有空格,如果批处理文件在这两个文件的同一文件夹里的话就不用写路径了

呵呵,没看清,试试他们的