0

我正在尝试使用 c# 制作一个窗口的表单应用程序,该应用程序可以将其他应用程序的快捷方式复制到一个特殊的文件夹。我使用此代码复制文件但不能制作快捷方式...

system.io.file.copy("what","where");

我用这个,但它不起作用

        System.IO.DirectoryInfo dir = new System.IO.DirectoryInfo(".\\calc.exe");
        string destination = @"C:\\ProgramData\\Microsoft\\Windows\\Start Menu\\Programs\Startup";
        System.IO.FileInfo[] files = dir.GetFiles("*.exe");

        foreach (var shorcut in files)
        {
            System.IO.File.Move(shorcut.FullName, destination);
        }

最简单的方法是什么?

4

1 回答 1

0

以下代码允许您读取 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.
于 2012-10-05T07:43:33.440 回答