Я зарегистрировал расширение ярлыка с именем .appfolder в реестре: reg export
Он должен вести себя как обычный ярлык .lnk, но должен иметь окончание .appfolder (которое имеет это причины).
Теперь я хочу создать ярлык с окончанием / расширением этого файла программно в C#. По умолчанию для окончания .lnk он работает с:
public static void CreateShortcut(string shortcutName, string shortcutPath, string targetFileLocation)
{
string shortcutLocation = Path.Combine(shortcutPath, shortcutName + @".lnk");
WshShell shell = new WshShell();
IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(shortcutLocation);
shortcut.Description = "My shortcut description";
shortcut.TargetPath = targetFileLocation;
shortcut.Save();
}
//e.g:
CreateShortcut("Example (Notepad)", Environment.GetFolderPath(Environment.SpecialFolder.Desktop),
"notepad.exe");
Когда я пытаюсь изменить расширение файла в этой строке string shortcutLocation = Path.Combine(shortcutPath, shortcutName + @".lnk");
на .appfolder, я получаю System.Runtime.InteropServices.COMException
(HRESULT: 0x80020009 (DISP_E_EXCEPTION)
).
Когда я пытаюсь изменить расширение файла после создания / сохранения ярлыка с помощью File.Move(shortcutLocation, Path.ChangeExtension(shortcutLocation, ".appfolder"));
, я получаю файл на рабочем столе со следующими свойствами: изображение
Как видите, Windows распознает Расширение .appfolder в качестве ярлыка, но вкладка «Ярлык» отсутствует, и когда я дважды щелкаю по файлу для выполнения, ничего не происходит.
Итак, моя регистрация .appfolder не является полной, хотя должно быть ... или как создать ярлык с собственным расширением файла ярлыка программно в C#?
Спасибо за помощь;)
РЕДАКТИРОВАТЬ:
Я попробовал другой способ создания ярлыка программно:
void main() {
IShellLink link = (IShellLink)new ShellLink();
// setup shortcut information
link.SetDescription("My Description");
link.SetPath(@"notepad.exe");
// save it
IPersistFile file = (IPersistFile)link;
string desktopPath = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
file.Save(Path.Combine(desktopPath, "Notepad.appfolder"), false);
}
[ComImport]
[Guid("00021401-0000-0000-C000-000000000046")]
internal class ShellLink
{
}
[ComImport]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[Guid("000214F9-0000-0000-C000-000000000046")]
internal interface IShellLink
{
void GetPath([Out, MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszFile, int cchMaxPath, out IntPtr pfd, int fFlags);
void GetIDList(out IntPtr ppidl);
void SetIDList(IntPtr pidl);
void GetDescription([Out, MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszName, int cchMaxName);
void SetDescription([MarshalAs(UnmanagedType.LPWStr)] string pszName);
void GetWorkingDirectory([Out, MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszDir, int cchMaxPath);
void SetWorkingDirectory([MarshalAs(UnmanagedType.LPWStr)] string pszDir);
void GetArguments([Out, MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszArgs, int cchMaxPath);
void SetArguments([MarshalAs(UnmanagedType.LPWStr)] string pszArgs);
void GetHotkey(out short pwHotkey);
void SetHotkey(short wHotkey);
void GetShowCmd(out int piShowCmd);
void SetShowCmd(int iShowCmd);
void GetIconLocation([Out, MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszIconPath, int cchIconPath, out int piIcon);
void SetIconLocation([MarshalAs(UnmanagedType.LPWStr)] string pszIconPath, int iIcon);
void SetRelativePath([MarshalAs(UnmanagedType.LPWStr)] string pszPathRel, int dwReserved);
void Resolve(IntPtr hwnd, int fFlags);
void SetPath([MarshalAs(UnmanagedType.LPWStr)] string pszFile);
}
Он создает файл ярлыка без ошибок (например, System.Runtime.InteropServices.COMException
, см. Выше), но не выполняет файл .exe двойным щелчком ни на одном.