我正在处理一个必须创建一个文件的python脚本,在最好的情况下,双击打开例如IE然后加载这个网站时应该是这样。我已经搜索了SO和Google,但我找不到任何东西。你们有什么想法我怎么能意识到这一点?
到目前为止
答案 0 :(得分:2)
您需要pip install winshell
使用;
import os, winshell
desktop = winshell.desktop()
path = os.path.join(desktop, "google.url")
target = "www.google.com/"
shortcut = file(path, 'w')
shortcut.write('[InternetShortcut]\n')
shortcut.write('URL=%s' % target)
shortcut.close()