我想读取.lnk文件的二进制内容。
只要快捷方式(lnk文件)的目标存在,就可以与IO.File.ReadAllBytes(string file)一起正常工作。



如果快捷方式的目标不存在(相信我,我想要这个),则该方法仅返回零。我猜这是因为操作系统遵循链接,如果不存在,它将返回零

有什么方法可以绕过该框架在显示.lnk文件的内容之前遵循.lnk目标的事实吗?

最佳答案

这没有什么意义,没有一种简单的方法可以检查它。我认为最好的方法是按照应该读取的方式读取.lnk文件。您可以使用COM来执行此操作,ShellLinkObject class实现IShellLink接口(interface)。开始使用Project + Add Reference,单击“浏览”选项卡,然后导航到c:\windows\system32\shell32.dll。生成一个互操作库。编写如下代码:

public static string GetLnkTarget(string lnkPath) {
    var shl = new Shell32.Shell();         // Move this to class scope
    lnkPath = System.IO.Path.GetFullPath(lnkPath);
    var dir = shl.NameSpace(System.IO.Path.GetDirectoryName(lnkPath));
    var itm = dir.Items().Item(System.IO.Path.GetFileName(lnkPath));
    var lnk = (Shell32.ShellLinkObject)itm.GetLink;
    return lnk.Target.Path;
}

10-08 04:56