c++ 桌面 创建快捷方式
文章转自王牌软件
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
只回答业务咨询
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
struct TShortcutCfg { // 构造函数 TShortcutCfg() { nShowCmd = SW_SHOWNORMAL; wHotKey = 0; nIconIndex = 0; } // 结构成员: AnsiString strShortcutName; // AnsiString strLnkDir; // AnsiString strDestFile; // AnsiString strArguments; // AnsiString strIconFile; // int nIconIndex; // AnsiString strWorkingDir; // AnsiString strDescription; // WORD wHotKey; // int nShowCmd; // }; //--------------------------------------------------------------------------- // 创建快捷方式 bool CrnCreateShortcut(TShortcutCfg sc, int nFolder) { char szBuf[MAX_PATH]; bool bResult = true; wchar_t wszBuf[MAX_PATH]; IShellLink *pShellLink; AnsiString strShortcutFile; if (nFolder >= 0) { LPITEMIDLIST lpItemIdList; SHGetSpecialFolderLocation(0, nFolder, &lpItemIdList); SHGetPathFromIDList(lpItemIdList, szBuf); if (DirectoryExists(AnsiString(szBuf))) { strShortcutFile = AnsiString(szBuf) + "\\" + sc.strShortcutName + ".lnk"; strShortcutFile.WideChar(wszBuf, MAX_PATH); } else bResult = false; } else if (DirectoryExists(sc.strLnkDir)) { strShortcutFile = IncludeTrailingBackslash(sc.strLnkDir) + sc.strShortcutName + ".lnk"; strShortcutFile.WideChar(wszBuf, MAX_PATH); } else bResult = false; if (bResult) { bResult = (CoInitialize(NULL) == S_OK); if (bResult) { bResult = CoCreateInstance (CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLink, (void **)&pShellLink) >= 0; if (bResult) { IPersistFile *ppf; bResult = pShellLink->QueryInterface(IID_IPersistFile, (void **)&ppf) >= 0; if (bResult) { // 目标文件 if (sc.strDestFile != EmptyStr) bResult = pShellLink->SetPath(sc.strDestFile.c_str()) >= 0; // 参数 if (bResult && sc.strArguments != EmptyStr) bResult = pShellLink->SetArguments(sc.strArguments.c_str()) >= 0; // 显示图标 if (bResult && sc.strIconFile != EmptyStr && FileExists(sc.strIconFile)) pShellLink->SetIconLocation(sc.strIconFile.c_str(), sc.nIconIndex); // 起始位置 if (bResult && sc.strWorkingDir != EmptyStr) pShellLink->SetWorkingDirectory(sc.strWorkingDir.c_str()); // 备注 if (bResult && sc.strDescription != EmptyStr) pShellLink->SetDescription(sc.strDescription.c_str()); // 快捷键 if (bResult && sc.wHotKey != 0) pShellLink->SetHotkey(sc.wHotKey); // 运行方式 if (bResult && sc.nShowCmd != 0) pShellLink->SetShowCmd(sc.nShowCmd); if (bResult) bResult = (ppf->Save(wszBuf, TRUE) >= 0); ppf->Release (); } pShellLink->Release (); } CoUninitialize(); } } return bResult; } //--------------------------------------------------------------------------- void __fastcall TForm1::Button1Click(TObject *Sender) { char szBuf[MAX_PATH]; GetSystemDirectory(szBuf, sizeof(szBuf)); TShortcutCfg sc; sc.strDestFile = ParamStr(0); sc.strShortcutName = "快捷方式名称"; sc.strArguments = "/n"; sc.strIconFile = AnsiString(szBuf) + "\\shell32.dll"; sc.nIconIndex = 5; sc.strWorkingDir = ExtractFilePath(ParamStr(0)); sc.wHotKey = MAKEWORD(VK_F8, HOTKEYF_CONTROL | HOTKEYF_SHIFT); sc.nShowCmd = SW_SHOWMAXIMIZED; if (!CrnCreateShortcut(sc, CSIDL_DESKTOP)) ShowMessage("创建快捷方式失败!"); else ShowMessage("创建快捷方式成功!"); } |
1 |
#define NO_WIN32_LEAN_AND_MEAN #include <shlobj.hpp> #include <vcl.h> |
学习日记,兼职软件设计,软件修改,毕业设计。
本文出自 学习日记,转载时请注明出处及相应链接。
本文永久链接: https://www.softwareace.cn/?p=668