python 在windows下创建快捷方式

2023-03-26 00:00:00 python 创建 快捷方式

在Python中创建快捷方式可以使用pywin32库中的win32com模块。下面是一个示例代码,可以将指定文件创建为指定路径的快捷方式:

import win32com.client

shell = win32com.client.Dispatch("WScript.Shell")
shortcut = shell.CreateShortCut("C:/Users/username/Desktop/shortcut.lnk")
shortcut.Targetpath = "C:/path/to/target/file"
shortcut.WorkingDirectory = "C:/path/to/target/directory"
shortcut.save()

上述代码使用win32com.client.Dispatch函数创建一个WScript.Shell对象,然后使用CreateShortcut方法创建一个快捷方式对象。然后,通过设置快捷方式对象的属性,比如Targetpath和WorkingDirectory,指定快捷方式的目标文件和工作目录,并调用save方法保存快捷方式。

相关文章