10

长话短说,我需要使用 C# 创建文件夹的快捷方式。我一直在阅读使用IWshRuntimeLibrary. 当我去尝试使用任何东西时,IWshRuntimeLibrary我会遇到各种歧义错误System.IO.File。我假设这是因为有一个IWshRuntimeLibrary.File接口以及System.IO.File. 我真正能找到的只是有关制作应用程序快捷方式的文章,而不是文件夹。

歧义错误除外:

  • 这是用于文件夹快捷方式的正确工具吗?
  • 如何使用此创建快捷方式
  • 如何指定快捷方式的放置位置

此外,当我尝试创建文件夹的快捷方式时,请C:\TEMP使用以下命令:

IWshShortcut shortcut;
wshShell = new WshShellClass();
shortcut = (IWshShortcut)wshShell.CreateShortcut(@"C:\TEMP");

shortcut.TargetPath = @"C:\Documents and Settings";

我得到一个COMException. 根据我读过的内容,这应该创建一个到 C 驱动器临时文件夹的快捷方式,并将该快捷方式放在“文档和设置”中。

4

3 回答 3

11

不要忘记将 Embed Interop Types 设置为 False 以引用 Interop.IWshRuntimeLibrary。我测试并工作没有出错。

  // Make sure you use try/catch block because your App may has no permissions on the target path!
  try
  {
    CreateShortcut(@"C:\temp", @"C:\MyShortcutFile.lnk",
        "Custom Shortcut", "/param", "Ctrl+F", @"c:\");
  }
  catch (Exception ex)
  {
    Console.WriteLine(ex.Message);
  }



   /// <summary>
    /// Create Windows Shorcut
    /// </summary>
    /// <param name="SourceFile">A file you want to make shortcut to</param>
    /// <param name="ShortcutFile">Path and shorcut file name including file extension (.lnk)</param>
    public static void CreateShortcut(string SourceFile, string ShortcutFile)
    {
      CreateShortcut(SourceFile, ShortcutFile, null, null, null, null);
    }

    /// <summary>
    /// Create Windows Shorcut
    /// </summary>
    /// <param name="SourceFile">A file you want to make shortcut to</param>
    /// <param name="ShortcutFile">Path and shorcut file name including file extension (.lnk)</param>
    /// <param name="Description">Shortcut description</param>
    /// <param name="Arguments">Command line arguments</param>
    /// <param name="HotKey">Shortcut hot key as a string, for example "Ctrl+F"</param>
    /// <param name="WorkingDirectory">"Start in" shorcut parameter</param>
    public static void CreateShortcut(string TargetPath, string ShortcutFile, string Description,
       string Arguments, string HotKey, string WorkingDirectory)
    {
      // Check necessary parameters first:
      if (String.IsNullOrEmpty(TargetPath))
        throw new ArgumentNullException("TargetPath");
      if (String.IsNullOrEmpty(ShortcutFile))
        throw new ArgumentNullException("ShortcutFile");

      // Create WshShellClass instance:
      var wshShell = new WshShellClass();

      // Create shortcut object:
      IWshRuntimeLibrary.IWshShortcut shorcut = (IWshRuntimeLibrary.IWshShortcut)wshShell.CreateShortcut(ShortcutFile);

      // Assign shortcut properties:
      shorcut.TargetPath = TargetPath;
      shorcut.Description = Description;
      if (!String.IsNullOrEmpty(Arguments))
        shorcut.Arguments = Arguments;
      if (!String.IsNullOrEmpty(HotKey))
        shorcut.Hotkey = HotKey;
      if (!String.IsNullOrEmpty(WorkingDirectory))
        shorcut.WorkingDirectory = WorkingDirectory;

      // Save the shortcut:
      shorcut.Save();
    }

来源:http: //zayko.net/post/How-to-create-Windows-shortcut- (C).aspx

于 2012-10-22T20:53:08.227 回答
4

你得到它的另一种方式:你正在尝试为你的文件夹创建C:\Temp一个快捷方式。C:\Documents and Settings

以下代码段将在您的桌面上创建一个网络文件夹的快捷方式:

var desktop = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
IWshShortcut shortcut;
var wshShell = new WshShellClass();
shortcut = (IWshShortcut)wshShell.CreateShortcut(Path.Combine(desktop, @"Temp.lnk"));
shortcut.TargetPath = @"\\computername\sharename";
shortcut.Save();
于 2012-10-22T21:00:10.820 回答
-1

IShellLink在专家交流中使用的解决方案:

在 .NET 中创建快捷方式

为您提供托管层以创建文件和文件夹快捷方式。

它是 VB.NET,但您可以使用免费转换器将其转换为 C#。

于 2012-10-22T20:42:52.760 回答