1、B.exe必须支持命令行参数
2、这里演示Notepad打开txt文件
#include
#include
int main(int argc, char* argv[])
{
char path_max[1024];
if(argc > 1)
{
for(int i = 1; i < argc; i++)
{
sprintf(path_max, "notepad.exe %s", argv[i]);
printf("执行命令为:%s\n", path_max);
system(path_max);
}
}
return 0;
}