0

当用户将配置文件添加到设备时,我正在尝试创建我的程序创建的文件夹的快捷方式。该文件夹的快捷链接应该出现在用户的收藏夹(Windows 7 资源管理器中的库)中,并具有我们项目中的 logo.ico。我以为我必须使用 IWshRuntimeLibrary,但代码会随机停在我身上并且不会返回任何错误......有什么帮助吗?

注意:profilePath、profileName 和 executablePath 都返回正确的数据并指向我尝试访问和修改的项目的正确位置。

public static bool CreateProfileShortcut(string profilePath, string profileName, string executablePath)
{
    bool success = false;
    string favoritesPath = "";
    IWshRuntimeLibrary.IWshShell wsh;
    IWshRuntimeLibrary.IWshShortcut shortcut;

    try
    {
        if (!String.IsNullOrWhiteSpace(profilePath) && Directory.Exists(profile.Path))
        {
            favoritesPath = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
            if (!File.Exists(favoritesPath + "\\Links\\" + profileName + ".lnk"))
            {
                wsh = new IWshRuntimeLibrary.WshShell();
                shortcut = (IWshRuntimeLibrary.IWshShortcut)wsh.CreateShortcut(favoritesPath + "\\Links\\" + profileName + ".lnk");
                shortcut.TargetPath = profilePath;
                shortcut.IconLocation = executablePath + "\\Icons\\logo.ico";
                shortcut.Save();
            }
        }
    }
    catch (Exception e)
    {
        MessageBox.Show(MessageBoxError(new string[] { e.TargetSite.Name, e.Message, "MinorError" }));
        success = false;
    }

    return success;
}
4

1 回答 1

0

试着看看这个问题这个问题。如果我理解的话,我认为您希望能够在 Windows 7 的“收藏夹”区域中创建快捷方式。

于 2012-11-06T14:49:32.093 回答