本指南介紹如何使用 .NET 框架在 C# 應用程式中建立應用程式捷徑或 URL 捷徑。 這是開發人員整合應用程式或提供用戶友好的存取點的常見任務。
直接建立捷徑並不直觀。 一種廣泛使用且有效的方法是利用 ShellLink.cs
類,該類通常在 vbAccelerator 庫中找到。這種方法使用互通服務,但避免了對 Windows Script Host (WSH) 的依賴,提供了更乾淨的解決方案。
以下程式碼示範了使用ShellLink
建立捷徑:
<code class="language-csharp">private static void CreateShortcutToStartup() { using (ShellLink shortcut = new ShellLink()) { shortcut.Target = Application.ExecutablePath; shortcut.WorkingDirectory = Path.GetDirectoryName(Application.ExecutablePath); shortcut.Description = "My Application Shortcut"; shortcut.DisplayMode = ShellLink.LinkDisplayMode.edmNormal; shortcut.Save(STARTUP_SHORTCUT_PATH); // Replace with your desired path } }</code>
此程式碼片段可有效產生應用程式捷徑,從而簡化 C# 或 .NET 專案中的流程。 請記得將 STARTUP_SHORTCUT_PATH
替換為您想要儲存捷徑的實際檔案路徑。
以上是如何使用 .NET 在 C# 中建立應用程式捷徑?的詳細內容。更多資訊請關注PHP中文網其他相關文章!