system->copy 和 ShellExecute 用法
//浏览器中打开文件
ShellExecute(0, (LPCSTR)"open", (LPCSTR)"iexplore.exe" ,(LPCSTR)"c:\\SmartCTCAPI-TestResults.xml" , 0 , SW_SHOW );
//复制文件
system("copy parseXML2HTML.xsl c:\\parseXML2HTML.xsl");
//浏览器中打开文件
ShellExecute(0, (LPCSTR)"open", (LPCSTR)"iexplore.exe" ,(LPCSTR)"c:\\SmartCTCAPI-TestResults.xml" , 0 , SW_SHOW );
//复制文件
system("copy parseXML2HTML.xsl c:\\parseXML2HTML.xsl");