2

我已经为可执行文件创建了快捷方式并且它可以工作,但是当我尝试为文件夹创建一个快捷方式时它不起作用。它确实创建了一个快捷方式,它只是不正确的“目标类型”。请看下面的图片。而不是“文件”,目标类型应该是“文件夹”。问题是,当我打开快捷方式时,它会询问我要使用哪个程序打开文件,但它没有打开文件夹。

屏幕截图显示使用我的代码创建到文件夹的快捷方式的目标属性不正确

我用来创建快捷方式的功能如下

from win32com.client import Dispatch
import winshell
import os

def create_shortcuts(self, tool_name, exe_path, startin, icon_path):

    shell = Dispatch('WScript.Shell')
    shortcut_file = os.path.join(winshell.desktop(), tool_name + '.lnk')
    shortcut = shell.CreateShortCut(shortcut_file)
    shortcut.Targetpath = exe_path
    shortcut.WorkingDirectory = startin
    shortcut.IconLocation = icon_path
    shortcut.save()

我不知道是否可以设置“目标类型”。我找不到办法,但我知道一定有办法。

4

1 回答 1

1

如果您想使用 .Net "clr"(特别是如果您已经需要它):

首先运行这个......您必须将此命令的输出与您的应用程序一起发送

"c:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6.1 Tools\TlbImp.exe" %SystemRoot%\system32\wshom.ocx /out:Interop.IWshRuntimeLibrary.dll

如果您以相当标准的方式安装 Windows SDK,tlbimp.exe 甚至可能在路径中。但如果不是,没关系,您只需将“程序集”(.Net 领域中提供接口的 dll 的花哨词)与您的应用程序一起发布。

然后这段代码将在 python 中工作:

import clr
sys.path.append(DIRECTORY_WHERE_YOU_PUT_THE_DLL)
clr.AddReference('Interop.IWshRuntimeLibrary')
import Interop.IWshRuntimeLibrary
sc = Interop.IWshRuntimeLibrary.WshShell().CreateShortcut("c:\\test\\sc.lnk")
isc = Interop.IWshRuntimeLibrary.IWshShortcut(sc)
isc.set_TargetPath("C:\\")
isc.Save()

.... 上面的代码,有太多的修改和序言,甚至可能适用于 Mono。

于 2018-06-21T20:02:12.103 回答