Greetings,

I'm looking to get access to the shell function: SHOpenFolderAndSelectItems
(MSDN: http://msdn.microsoft.com/en-us/library/bb762232(v=VS.85).aspx)

But, after looking around for quite some time (and googling, and searching
the pywin32 archives, reading examples...), I am not able to find it.
Though, I believe I am close as a good number of win32 shell functions are
displayed when
I do the following:

>>> from win32com.shell import shell
>>> print('\n'.join(sorted(dir(shell))))

  <lots of names...>

>>> shell.SHOpenFolderAndSelectedItems
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute
'SHOpenFolderAndSelectedItems'

I am using Python 3.2 with pywin32-216.win-amd64-py3.2 installed in a 64 bit
Windows 7 machine.
Does pywin have support for SHOpenFolderAndSelectItems()?  If so, where is
it located?  I'm new to the pywin32 world, so let me know if I'm missing
something obvious.

Many thanks!
_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to