编程语言
首页 > 编程语言> > C#不引用IWshRuntimeLibrary获取快捷方式目标位置

C#不引用IWshRuntimeLibrary获取快捷方式目标位置

作者:互联网

private static readonly Guid CLSID_WshShell = new Guid("72C24DD5-D70A-438B-8A42-98424B88AFB8");
private static string GetShortCutTarget(string lnk) {
if (System.IO.File.Exists(lnk)) {
dynamic objWshShell = null, objShortcut = null;
try {
objWshShell = Activator.CreateInstance(Type.GetTypeFromCLSID(CLSID_WshShell));
objShortcut = objWshShell.CreateShortcut(lnk);
return objShortcut.TargetPath;
}
finally {
Marshal.ReleaseComObject(objShortcut);
Marshal.ReleaseComObject(objWshShell);
}
}
return null;
}// 获取快捷方式目标路径

标签:CLSID,C#,objWshShell,lnk,快捷方式,null,objShortcut,IWshRuntimeLibrary
来源: https://www.cnblogs.com/BluePointLilac/p/12228470.html