nanfengnan

#include <windows.h>
//windows打开记事本小程序
int main()
{
STARTUPINFO si = {sizeof(si)};
PROCESS_INFORMATION pi;
char* szCommandLine ="notepad ReadMe.txt";
::CreateProcess(NULL,szCommandLine,NULL,NULL,FALSE,NULL,NULL,NULL,&si,&pi);
return 0;
}

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-05-03
  • 2022-12-23
  • 2021-07-15
  • 2022-12-23
  • 2021-12-05
  • 2021-12-02
  • 2021-12-14
猜你喜欢
  • 2021-11-09
  • 2022-12-23
  • 2022-12-23
  • 2021-08-29
  • 2022-01-21
  • 2022-12-23
相关资源
相似解决方案