home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- from win32com.shell import shell
- from win32com.shell.shellcon import *
- sf = shell.SHGetDesktopFolder()
- print 'Shell Folder is', sf
- names = []
- for i in sf:
- name = sf.GetDisplayNameOf(i, SHGDN_NORMAL)
- names.append(name)
-
- enum = sf.EnumObjects(0, SHCONTF_FOLDERS | SHCONTF_NONFOLDERS | SHCONTF_INCLUDEHIDDEN)
- num = 0
- for i in enum:
- num += 1
-
- if num != len(names):
- print 'Should have got the same number of names!?'
-
- print 'Found', len(names), 'items on the desktop'
- for name in names:
- print name
-
-