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.
如果您使用CreateProcess,它显然只适用于 .exe 文件。使它与其他可执行文件类型一起工作的最佳方法是什么?
CreateProcess
到目前为止,我们最好的办法是预先cmd /c处理此类情况。这真的是正确的方法吗?
cmd /c
批处理文件在技术上不是可执行文件,它们只是注册为使用cmd. 正如您提到您需要操作 I/O 句柄的能力,您最好的选择确实是使用CreateProcesswith cmd /c。
cmd