zoukankan      html  css  js  c++  java
  • WinRAR命令

    char str[]="c:\\Program Files\\WinRAR\\WinRAR.exe e -hp11111111 Quan1.rar";  

    PROCESS_INFORMATION   pidInfo;  

    STARTUPINFO           startInfo;  

    BOOL b;

     char *buf=" ";  

    startInfo.cb                     =   sizeof(STARTUPINFO);  

    startInfo.lpReserved     =   NULL;  

    startInfo.lpTitle           =   NULL;  

    startInfo.lpDesktop       =   NULL;  

    startInfo.dwX                   =   0;  

    startInfo.dwY                   =   0;  startInfo.dwXSize           =   0;  

    startInfo.dwYSize           =   0;  startInfo.dwXCountChars         =   0;  

    startInfo.dwYCountChars         =   0;  

    startInfo.dwFlags           =   STARTF_USESTDHANDLES;  

    startInfo.wShowWindow   =   0;   //SW_SHOWDEFAULT;  

    startInfo.lpReserved2   =   NULL;  

    startInfo.cbReserved2   =   0;  

    startInfo.hStdInput       =   GetStdHandle(STD_INPUT_HANDLE);  

    startInfo.hStdOutput     =   GetStdHandle(STD_OUTPUT_HANDLE);  

    startInfo.hStdError       =   GetStdHandle(STD_ERROR_HANDLE);    

    b=CreateProcess(NULL,str,NULL,NULL,TRUE,CREATE_NO_WINDOW,NULL,NULL,&startInfo,&pidInfo);  

    if(!b)  

    {   

    MessageBox(NULL,"failed",NULL,0);  

    }

     WaitForSingleObject(pidInfo.hProcess,INFINITE);

     CloseHandle(pidInfo.hProcess);  

    CloseHandle(pidInfo.hThread);

  • 相关阅读:
    Python中的时间
    Python + Selenium 自动化环境搭建过程
    HTML手写课程表,练基础
    temp2
    Jenkins配置文件
    Jenkins安装Slave节点
    Jenkins管理插件
    常见的linux上的服务重启脚本
    测试感慨
    docker的安装
  • 原文地址:https://www.cnblogs.com/quansir/p/2879470.html
Copyright © 2011-2022 走看看