gpt4 book ai didi

c# - .NET 读取 .lnk 文件的二进制内容

转载 作者:太空狗 更新时间:2023-10-29 19:53:23 27 4
gpt4 key购买 nike

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

但是

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

有什么方法可以绕过框架在显示 .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;
}

关于c# - .NET 读取 .lnk 文件的二进制内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2565885/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com