C++ 运行 快捷方式

#include <windows.h>
#include <shellapi.h>
#include <iostream>
using namespace std;

int main(int argc, char* argv[])
{
	try
	{
		Sleep(1000);
		HINSTANCE ret = ShellExecute(NULL,"open","D:/PowerPoint/资源.lnk",NULL,"",SW_SHOWNORMAL);//注意快捷方式路径的格式
	}
	catch(...){}
	return 0;
}

你可能感兴趣的:(C++,快捷方式)