在 python 中的 windows 中创建网络快捷方式
Create web shortcut in windows in python
Create shortcut files in Windows 10 using Python 3.7.1
这是本地文件的快捷方式
如何创建 https://xxxxx.com
的快捷方式
您将需要 winshell 为此,这将使查找特定于用户的路径和文件夹变得容易。这是脚本:
import os, winshell
desktop = winshell.desktop()
path = os.path.join(desktop, "ShortcutName.url")
target = "https://xxxxx.com"
shortcut = file(path, 'w')
shortcut.write('[InternetShortcut]\n')
shortcut.write('URL=%s' % target)
shortcut.close()
with open('shortcut.url', mode='w', newline='\r\n') as f:
f.write("[InternetShortcut]\nURL=http://example.com")
选项 newline='\r\n'
以确保您的脚本将创建有效的 Windows 快捷方式,而 运行 在 Mac 或 Linux.
Create shortcut files in Windows 10 using Python 3.7.1
这是本地文件的快捷方式
如何创建 https://xxxxx.com
的快捷方式您将需要 winshell 为此,这将使查找特定于用户的路径和文件夹变得容易。这是脚本:
import os, winshell
desktop = winshell.desktop()
path = os.path.join(desktop, "ShortcutName.url")
target = "https://xxxxx.com"
shortcut = file(path, 'w')
shortcut.write('[InternetShortcut]\n')
shortcut.write('URL=%s' % target)
shortcut.close()
with open('shortcut.url', mode='w', newline='\r\n') as f:
f.write("[InternetShortcut]\nURL=http://example.com")
选项 newline='\r\n'
以确保您的脚本将创建有效的 Windows 快捷方式,而 运行 在 Mac 或 Linux.