这是我使用 C# 创建快捷方式的代码。它仅适用于非 UNC 路径,f。前任。使用 "C:\Users\MsX\Documents\ABC" 有效,但使用 "\\abc\klk\somepath" 无效。
public static void CreateShortcut(string SourceFile, string ShortcutFile, string Description, string Arguments, string HotKey, string WorkingDirectory) {
// Check necessary parameters first:
if (String.IsNullOrEmpty(SourceFile))
throw new ArgumentNullException("SourceFile");
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 = SourceFile;
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();
}
如何创建显示到网络 UNC 文件夹的快捷方式?
谢谢