以下代码允许您读取 lnk 文件
这没有多大意义,没有简单的方法来检查它。我认为最好的方法是按照应该读取的方式读取 .lnk 文件。您可以使用 COM 来执行此操作,ShellLinkObject 类实现了 IShellLink 接口。开始使用 Project + Add Reference,Browse 选项卡并导航到 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;
}
然后,您只需使用以下代码将其保存在您自己的文件夹中
First include a reference to C:\Windows\System32\wshom.ocx
Second, include the following using statement :-
using IWshRuntimeLibrary;
Third, Here is the code :-
// This creates a Folder Shortcut
IWshShell wsh = new WshShellClass();
IWshShortcut shortcut = (IWshShortcut) wsh.CreateShortcut (shortcutpathfilename);
shortcut.TargetPath = targetdir;
shortcut.Save();
shortcutpathfilename is a path & filename of the .lnk file.
targetdir is the directory the link points to.