在初始对话框中利用函数GetCommandLineW获取MFC程序的命令行参数

时间:2022-07-05 14:30:55

int argn;
 LPWSTR s=GetCommandLineW();
 LPWSTR   *cmdLineAry=CommandLineToArgvW(s,&argn);
        if(argn!=1)
 {
  MessageBox((CString)cmdLineAry[1]);//这就是文件名了。
}原文地址: http://zhidao.baidu.com/question/180310237.html