KyleBlog.cn 文章 标签 关于
文章 标签 关于

C#创建快捷方式、查询快捷方式的目标地址

C#创建快捷方式

public static void CreateShortCut(string path, string target)
{
    WshShell shell = new WshShell();
    IWshShortcut shortcut = shell.CreateShortcut(path) as IWshShortcut;
    shortcut.TargetPath = target;
    shortcut.Save();
}
  • 参数path是快捷方式自身的地址
  • 参数target是快捷方式指向的目标地址

C#查询快捷方式的目标地址

public static string GetShortCutTarget(string path)
{
    WshShell shell = new WshShell();
    IWshShortcut shortcut = shell.CreateShortcut(path) as IWshShortcut;
    return shortcut.TargetPath;
}
  • 参数path是快捷方式自身的地址
  • GetShortCutTarget方法返回的是快捷方式指向的目标地址

本文为kyleblog.cn原创,转载请注明出处:https://www.kyleblog.cn/posts/csharp_shortcut

发布日期:2022-09-14 联系作者