Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试在 CVI 平台(作为 C 代码批处理脚本)中执行以下“unknown.exe”命令,并将这些命令输出重定向到日志文件中。
sprintf(szCommand, "%s > D:\\log.txt 2>&1", "D:\\unknown.exe"); system(szCommand);
当我运行脚本时,exe文件可以执行,但无法获得输出“日志文件”。
我不明白这里出了什么问题。