现在我们通过管道来达到此目的。下面是在VC6.0下写的一个测试用例,
#include \"stdafx.h\"
#include <stdio.h>
#include <stdlib.h>
void main(void)
{
system(\"type 2.txt | Schedul.exe>1.txt\");
// system(\"type 1.txt\");
}
2.txt的内容作为 Schedul.exe 的输入并且将结果保存到1.txt文件中。
看来DOS的命令还是有很大的作用的。