This repository has been archived by the owner on Dec 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
/
link-maker.py
95 lines (83 loc) · 3.28 KB
/
link-maker.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Copyright 2019, Jorj McKie, mailto:<[email protected]>
#
# Part of "Nuitka", an optimizing Python compiler that is compatible and
# integrates with CPython, but also works on its own.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import os, sys
import pythoncom
from win32com.shell import shell, shellcon
import PySimpleGUI as sg
desktop_path = shell.SHGetFolderPath(0, shellcon.CSIDL_DESKTOP, 0, 0)
form = sg.FlexForm("Create Links to EXE Files in a Folder")
message = sg.Text("", size=(60, 1))
layout = [
[
sg.Text("Program Folder:", size=(12, 1)),
sg.InputText("", key="pgm-dir", do_not_clear=True),
sg.FolderBrowse(button_text="..."),
],
[
sg.Text("Create in:", size=(12, 1)),
sg.InputText(desktop_path, key="tar-folder", do_not_clear=True),
sg.FolderBrowse(button_text="..."),
],
[message],
[sg.Submit(), sg.Cancel()],
]
while True:
btn, val = form.Layout(layout).Read()
if btn != "Submit" or not val["pgm-dir"]:
break
input_dir = exe_filedir = os.path.abspath(val["pgm-dir"])
if not os.path.exists(exe_filedir):
message.Update("No such folder: '%s'" % val["pgm-dir"])
continue
flist = os.listdir(exe_filedir)
exe_files = [f for f in flist if f.lower().endswith(".exe")]
if len(exe_files) == 0:
exe_filedir = os.path.join(exe_filedir, "bin")
try:
flist = os.listdir(exe_filedir)
exe_files = [f for f in flist if f.lower().endswith(".exe")]
except:
pass
if len(exe_files) == 0:
message.Update("No '.exe' files found")
continue
if not val["tar-folder"]:
tar_folder = desktop_path
else:
tar_folder = os.path.abspath(val["tar-folder"])
if not os.path.exists(tar_folder):
message.Update("Output folder does not exist: '%s'" % tar_folder)
continue
# We are all set. Now create a link for each of the EXE files.
for exe_base in exe_files:
exe_file = os.path.join(exe_filedir, exe_base) # full EXE name
exe_name, exe_ext = os.path.splitext(exe_base) # split off extension
shortcut = pythoncom.CoCreateInstance( # create link instance
shell.CLSID_ShellLink,
None,
pythoncom.CLSCTX_INPROC_SERVER,
shell.IID_IShellLink,
)
shortcut.SetPath(exe_file) # set file path
shortcut.SetDescription("Link to %s" % exe_file) # set description
shortcut.SetIconLocation(exe_file, 0) # set the icon
shortcut.SetWorkingDirectory(exe_filedir)
persist_file = shortcut.QueryInterface(pythoncom.IID_IPersistFile)
persist_file.Save(os.path.join(tar_folder, "%s.lnk" % exe_name.title()), 0)
shortcut = None
break