C# 读取快捷方式指向的文件
发布网友
发布时间:2022-09-29 02:20
我来回答
共3个回答
热心网友
时间:2024-11-25 16:44
可以编写函数实现,具体参考如下:
private string 获取快捷方式文件指向的路径(string 快捷方式文件的路径)
{
//快捷方式文件的路径 = @"d:\Test.lnk";
if (System.IO.File.Exists(快捷方式文件的路径))
{
WshShell shell = new WshShell();
IWshShortcut 当前快捷方式文件IWshShortcut类 = (IWshShortcut)shell.CreateShortcut(快捷方式文件的路径);
//快捷方式文件指向的路径.Text = 当前快捷方式文件IWshShortcut类.TargetPath;
//快捷方式文件指向的目标目录.Text = 当前快捷方式文件IWshShortcut类.WorkingDirectory;
return 当前快捷方式文件IWshShortcut类.TargetPath;
}
else
{
return "";
}
}
热心网友
时间:2024-11-25 16:44
IWshRuntimeLibrary.WshShell shell = new IWshRuntimeLibrary.WshShell();
shortcut = (IWshRuntimeLibrary.IWshShortcut)shell.CreateShortcut("d:\\text\\.lnk");
MessageBox.Show(shortcut.TargetPath);
你试试吧
热心网友
时间:2024-11-25 16:45
新建一个快捷方式,,,再把txt地址打上去