无法在 C# 中创建快捷方式
Unable to create a shortcut in C#
在我的程序中,我想让用户能够创建快捷方式。
我尝试使用 IWshRuntimeLibrary
,但它不支持 Unicode 字符,因此失败。
我找到了this answer,当我原封不动地复制它时它可以工作,但是当我把它放在一个函数中并使用变量时它就不起作用。
这是我使用的代码:
public static void CreateShortcut(string shortcutName, string shortcutPath, string targetFileLocation, string description = "", string args = "")
{
// Create empty .lnk file
string path = System.IO.Path.Combine(shortcutPath, $"{shortcutName}.lnk");
System.IO.File.WriteAllBytes(path, new byte[0]);
// Create a ShellLinkObject that references the .lnk file
Shell32.Shell shl = new Shell32.Shell();
Shell32.Folder dir = shl.NameSpace(shortcutPath);
Shell32.FolderItem itm = dir.Items().Item(shortcutName);
Shell32.ShellLinkObject lnk = (Shell32.ShellLinkObject)itm.GetLink;
// Set the .lnk file properties
lnk.Path = targetFileLocation;
lnk.Description = description;
lnk.Arguments = args;
lnk.WorkingDirectory = Path.GetDirectoryName(targetFileLocation);
lnk.Save(path);
}
如您所见,代码完全相同。唯一的区别是使用变量而不是硬编码值。
我这样调用函数:Utils.CreateShortcut("Name", @"D:\Desktop", "notepad.exe", args: "Demo.txt");
我得到 System.NullReferenceException
行 Shell32.ShellLinkObject lnk = (Shell32.ShellLinkObject)itm.GetLink;
因为 itm
为空。
我找到问题了。
这一行:System.IO.Path.Combine(shortcutPath, $"{shortcutName}.lnk");
我在文件名中添加了“.lnk”扩展名,但是当我使用 dir.Items().Item(shortcutName);
搜索它时,它没有扩展名。
解决方法:在函数开头写shortcutName += ".lnk";
然后像这样获取路径:System.IO.Path.Combine(shortcutPath, shortcutName);
在我的程序中,我想让用户能够创建快捷方式。
我尝试使用 IWshRuntimeLibrary
,但它不支持 Unicode 字符,因此失败。
我找到了this answer,当我原封不动地复制它时它可以工作,但是当我把它放在一个函数中并使用变量时它就不起作用。
这是我使用的代码:
public static void CreateShortcut(string shortcutName, string shortcutPath, string targetFileLocation, string description = "", string args = "")
{
// Create empty .lnk file
string path = System.IO.Path.Combine(shortcutPath, $"{shortcutName}.lnk");
System.IO.File.WriteAllBytes(path, new byte[0]);
// Create a ShellLinkObject that references the .lnk file
Shell32.Shell shl = new Shell32.Shell();
Shell32.Folder dir = shl.NameSpace(shortcutPath);
Shell32.FolderItem itm = dir.Items().Item(shortcutName);
Shell32.ShellLinkObject lnk = (Shell32.ShellLinkObject)itm.GetLink;
// Set the .lnk file properties
lnk.Path = targetFileLocation;
lnk.Description = description;
lnk.Arguments = args;
lnk.WorkingDirectory = Path.GetDirectoryName(targetFileLocation);
lnk.Save(path);
}
如您所见,代码完全相同。唯一的区别是使用变量而不是硬编码值。
我这样调用函数:Utils.CreateShortcut("Name", @"D:\Desktop", "notepad.exe", args: "Demo.txt");
我得到 System.NullReferenceException
行 Shell32.ShellLinkObject lnk = (Shell32.ShellLinkObject)itm.GetLink;
因为 itm
为空。
我找到问题了。
这一行:System.IO.Path.Combine(shortcutPath, $"{shortcutName}.lnk");
我在文件名中添加了“.lnk”扩展名,但是当我使用 dir.Items().Item(shortcutName);
搜索它时,它没有扩展名。
解决方法:在函数开头写shortcutName += ".lnk";
然后像这样获取路径:System.IO.Path.Combine(shortcutPath, shortcutName);