我查看了inetrnet,但对此一无所获,所以我在这里问-
是否可以使用python创建文件的快捷方式并将其放在我选择的特定目录中?
例如,我在’C:’中有一个名为“ EXAMPLE”的文件夹.我想自动创建Google Chrome浏览器的快捷方式并将其放在此文件夹中.是否可以使用python做到这一点(而不仅仅是自己拖动它)?
谢谢
解决方法:
我想因为提到C:您正在使用Windows.所以你可以使用winshell
import os, winshell
from win32com.client import Dispatch
desktop = winshell.desktop()
path = os.path.join(desktop, "Media Player Classic.lnk")
target = r"P:\Media\Media Player Classic\mplayerc.exe"
wDir = r"P:\Media\Media Player Classic"
icon = r"P:\Media\Media Player Classic\mplayerc.exe"
shell = Dispatch('WScript.Shell')
shortcut = shell.CreateShortCut(path)
shortcut.Targetpath = target
shortcut.WorkingDirectory = wDir
shortcut.IconLocation = icon
shortcut.save()
有关更多信息,请查看here
如果您使用的是基于Unix的系统,则可以使用符号链接命令.