92 @param targetPath path the shortcut shall point to |
92 @param targetPath path the shortcut shall point to |
93 @type str |
93 @type str |
94 @param iconPath path of the icon file |
94 @param iconPath path of the icon file |
95 @type str |
95 @type str |
96 """ |
96 """ |
|
97 from pywintypes import com_error |
97 from win32com.client import Dispatch |
98 from win32com.client import Dispatch |
98 from pywintypes import com_error |
|
99 |
99 |
100 with contextlib.suppress(com_error): |
100 with contextlib.suppress(com_error): |
101 shell = Dispatch("WScript.Shell") |
101 shell = Dispatch("WScript.Shell") |
102 shortcut = shell.CreateShortCut(linkPath) |
102 shortcut = shell.CreateShortCut(linkPath) |
103 shortcut.Targetpath = targetPath |
103 shortcut.Targetpath = targetPath |