本文整理汇总了Python中win32com.shell.shell.CLSID_ShellLink方法的典型用法代码示例。如果您正苦于以下问题:Python shell.CLSID_ShellLink方法的具体用法?Python shell.CLSID_ShellLink怎么用?Python shell.CLSID_ShellLink使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类win32com.shell.shell
的用法示例。
在下文中一共展示了shell.CLSID_ShellLink方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testShellLink
# 需要导入模块: from win32com.shell import shell [as 别名]
# 或者: from win32com.shell.shell import CLSID_ShellLink [as 别名]
def testShellLink(self):
desktop = str(shell.SHGetSpecialFolderPath(0, CSIDL_DESKTOP))
num = 0
shellLink = pythoncom.CoCreateInstance(shell.CLSID_ShellLink, None, pythoncom.CLSCTX_INPROC_SERVER, shell.IID_IShellLink)
persistFile = shellLink.QueryInterface(pythoncom.IID_IPersistFile)
names = [os.path.join(desktop, n) for n in os.listdir(desktop)]
programs = str(shell.SHGetSpecialFolderPath(0, CSIDL_PROGRAMS))
names.extend([os.path.join(programs, n) for n in os.listdir(programs)])
for name in names:
try:
persistFile.Load(name,STGM_READ)
except pythoncom.com_error:
continue
# Resolve is slow - avoid it for our tests.
#shellLink.Resolve(0, shell.SLR_ANY_MATCH | shell.SLR_NO_UI)
fname, findData = shellLink.GetPath(0)
unc = shellLink.GetPath(shell.SLGP_UNCPRIORITY)[0]
num += 1
if num == 0:
# This isn't a fatal error, but is unlikely.
print "Could not find any links on your desktop or programs dir, which is unusual"
示例2: __init__
# 需要导入模块: from win32com.shell import shell [as 别名]
# 或者: from win32com.shell.shell import CLSID_ShellLink [as 别名]
def __init__(self,
path=None,
arguments=None,
description=None,
workingdir=None,
iconpath=None,
iconidx=0):
self._base = pythoncom.CoCreateInstance(
shell.CLSID_ShellLink, None,
pythoncom.CLSCTX_INPROC_SERVER, shell.IID_IShellLink
)
data = map(None,
['"%s"' % os.path.abspath(path), arguments, description,
os.path.abspath(workingdir), os.path.abspath(iconpath)],
("SetPath", "SetArguments", "SetDescription",
"SetWorkingDirectory") )
for value, function in data:
if value and function:
# call function on each non-null value
getattr(self, function)(value)
if iconpath:
self.SetIconLocation(iconpath, iconidx)
示例3: CreateShortCut
# 需要导入模块: from win32com.shell import shell [as 别名]
# 或者: from win32com.shell.shell import CLSID_ShellLink [as 别名]
def CreateShortCut(Path, Target,Arguments = "", StartIn = "", Icon = ("",0), Description = ""):
# Get the shell interface.
sh = pythoncom.CoCreateInstance(shell.CLSID_ShellLink, None, \
pythoncom.CLSCTX_INPROC_SERVER, shell.IID_IShellLink)
# Get an IPersist interface
persist = sh.QueryInterface(pythoncom.IID_IPersistFile)
# Set the data
sh.SetPath(Target)
sh.SetDescription(Description)
sh.SetArguments(Arguments)
sh.SetWorkingDirectory(StartIn)
sh.SetIconLocation(Icon[0],Icon[1])
# sh.SetShowCmd( win32con.SW_SHOWMINIMIZED)
# Save the link itself.
persist.Save(Path, 1)
print "Saved to", Path
示例4: Get
# 需要导入模块: from win32com.shell import shell [as 别名]
# 或者: from win32com.shell.shell import CLSID_ShellLink [as 别名]
def Get(cls, filename):
sh = pythoncom.CoCreateInstance(
shell.CLSID_ShellLink,
None,
pythoncom.CLSCTX_INPROC_SERVER,
shell.IID_IShellLink
)
persist = sh.QueryInterface(pythoncom.IID_IPersistFile).Load(filename) # NOQA
self = cls()
self.path = filename
self.target = sh.GetPath(shell.SLGP_SHORTPATH)[0]
self.description = sh.GetDescription()
self.arguments = sh.GetArguments()
self.startIn = sh.GetWorkingDirectory()
self.icons = sh.GetIconLocation()
return self
示例5: DumpLink
# 需要导入模块: from win32com.shell import shell [as 别名]
# 或者: from win32com.shell.shell import CLSID_ShellLink [as 别名]
def DumpLink(fname):
shellLink = pythoncom.CoCreateInstance(shell.CLSID_ShellLink, None, pythoncom.CLSCTX_INPROC_SERVER, shell.IID_IShellLink)
persistFile = shellLink.QueryInterface(pythoncom.IID_IPersistFile)
persistFile.Load(fname,STGM_READ)
shellLink.Resolve(0, shell.SLR_ANY_MATCH | shell.SLR_NO_UI)
fname, findData = shellLink.GetPath(0)
print "Filename:", fname, ", UNC=", shellLink.GetPath(shell.SLGP_UNCPRIORITY)[0]
print "Description:", shellLink.GetDescription()
print "Working Directory:", shellLink.GetWorkingDirectory()
print "Icon:", shellLink.GetIconLocation()
示例6: __init__
# 需要导入模块: from win32com.shell import shell [as 别名]
# 或者: from win32com.shell.shell import CLSID_ShellLink [as 别名]
def __init__( self ):
self._base = pythoncom.CoCreateInstance(
shell.CLSID_ShellLink, None,
pythoncom.CLSCTX_INPROC_SERVER, shell.IID_IShellLink
)
示例7: __init__
# 需要导入模块: from win32com.shell import shell [as 别名]
# 或者: from win32com.shell.shell import CLSID_ShellLink [as 别名]
def __init__(self,
path=None,
arguments=None,
description=None,
workingdir=None,
iconpath=None,
iconidx=0):
"""
@param path: Location of the target
@param arguments: If path points to an executable, optional arguments
to pass
@param description: Human-readable description of target
@param workingdir: Directory from which target is launched
@param iconpath: Filename that contains an icon for the shortcut
@param iconidx: If iconpath is set, optional index of the icon desired
"""
self._base = pythoncom.CoCreateInstance(
shell.CLSID_ShellLink, None,
pythoncom.CLSCTX_INPROC_SERVER, shell.IID_IShellLink
)
if path is not None:
self.SetPath(os.path.abspath(path))
if arguments is not None:
self.SetArguments(arguments)
if description is not None:
self.SetDescription(description)
if workingdir is not None:
self.SetWorkingDirectory(os.path.abspath(workingdir))
if iconpath is not None:
self.SetIconLocation(os.path.abspath(iconpath), iconidx)
示例8: create_shortcut
# 需要导入模块: from win32com.shell import shell [as 别名]
# 或者: from win32com.shell.shell import CLSID_ShellLink [as 别名]
def create_shortcut(
path,
description,
filename,
arguments="",
workdir="",
iconpath="",
iconindex=0,
):
"""Create Windows shortcut (.lnk file)"""
import pythoncom
from win32com.shell import shell
ilink = pythoncom.CoCreateInstance(
shell.CLSID_ShellLink,
None,
pythoncom.CLSCTX_INPROC_SERVER,
shell.IID_IShellLink,
)
ilink.SetPath(path)
ilink.SetDescription(description)
if arguments:
ilink.SetArguments(arguments)
if workdir:
ilink.SetWorkingDirectory(workdir)
if iconpath or iconindex:
ilink.SetIconLocation(iconpath, iconindex)
# now save it.
ipf = ilink.QueryInterface(pythoncom.IID_IPersistFile)
if not filename.endswith('.lnk'):
filename += '.lnk'
ipf.Save(filename, 0)
# =============================================================================
# Misc.
# =============================================================================
示例9: __init__
# 需要导入模块: from win32com.shell import shell [as 别名]
# 或者: from win32com.shell.shell import CLSID_ShellLink [as 别名]
def __init__(self, lnkname):
self.shortcut = pythoncom.CoCreateInstance(
shell.CLSID_ShellLink, None,
pythoncom.CLSCTX_INPROC_SERVER, shell.IID_IShellLink)
self.shortcut.QueryInterface(pythoncom.IID_IPersistFile).Load(lnkname)
示例10: Create
# 需要导入模块: from win32com.shell import shell [as 别名]
# 或者: from win32com.shell.shell import CLSID_ShellLink [as 别名]
def Create(
cls,
path,
target,
arguments="",
startIn="",
icon=("", 0),
description=""
):
"""Create a Windows shortcut:
path - As what file should the shortcut be created?
target - What command should the desktop use?
arguments - What arguments should be supplied to the command?
startIn - What folder should the command start in?
icon - (filename, index) What icon should be used for the shortcut?
description - What description should the shortcut be given?
eg
Shortcut.Create(
path=os.path.join (desktop (), "PythonI.lnk"),
target=r"c:\python\python.exe",
icon=(r"c:\python\python.exe", 0),
description="Python Interpreter"
)
"""
sh = pythoncom.CoCreateInstance(
shell.CLSID_ShellLink,
None,
pythoncom.CLSCTX_INPROC_SERVER,
shell.IID_IShellLink
)
sh.SetPath(target)
sh.SetDescription(description)
sh.SetArguments(arguments)
sh.SetWorkingDirectory(startIn)
sh.SetIconLocation(icon[0], icon[1])
persist = sh.QueryInterface(pythoncom.IID_IPersistFile)
persist.Save(path, 1)
示例11: create_shortcut
# 需要导入模块: from win32com.shell import shell [as 别名]
# 或者: from win32com.shell.shell import CLSID_ShellLink [as 别名]
def create_shortcut(path, description, filename,
arguments="", workdir="", iconpath="", iconindex=0):
try:
import pythoncom
except ImportError:
print("pywin32 is required to run this script manually",
file=sys.stderr)
sys.exit(1)
from win32com.shell import shell, shellcon # analysis:ignore
ilink = pythoncom.CoCreateInstance(shell.CLSID_ShellLink, None,
pythoncom.CLSCTX_INPROC_SERVER,
shell.IID_IShellLink)
ilink.SetPath(path)
ilink.SetDescription(description)
if arguments:
ilink.SetArguments(arguments)
if workdir:
ilink.SetWorkingDirectory(workdir)
if iconpath or iconindex:
ilink.SetIconLocation(iconpath, iconindex)
# now save it.
ipf = ilink.QueryInterface(pythoncom.IID_IPersistFile)
ipf.Save(filename, 0)
# Support the same list of "path names" as bdist_wininst.
示例12: set_shortcut
# 需要导入模块: from win32com.shell import shell [as 别名]
# 或者: from win32com.shell.shell import CLSID_ShellLink [as 别名]
def set_shortcut(filename,lnkname,iconname):
shortcut = pythoncom.CoCreateInstance(
shell.CLSID_ShellLink, None,
pythoncom.CLSCTX_INPROC_SERVER, shell.IID_IShellLink)
shortcut.SetPath(filename)
shortcut.SetIconLocation(iconname,0)
if os.path.splitext(lnkname)[-1] != '.lnk':
lnkname += ".lnk"
shortcut.QueryInterface(pythoncom.IID_IPersistFile).Save(lnkname,0)
#如果是远程监听某个电脑,可以将获取到的信息通过邮件发出去