Re: [python-win32] Access Most Recently Used (MRU) entries ?

2011-06-19 Thread Tim Golden
On 19/06/2011 00:00, reckoner wrote: On 17/06/2011 14:19, reckoner wrote: Depends what you need to do. To add in item, use the SHAddToRecentDocs API from the shell module: code import sys from win32com.shell import shell, shellcon shell.SHAddToRecentDocs ( shellcon.SHARD_PATHW,

Re: [python-win32] Access Most Recently Used (MRU) entries ?

2011-06-18 Thread reckoner
On 17/06/2011 14:19, reckoner wrote: Depends what you need to do. To add in item, use the SHAddToRecentDocs API from the shell module: code import sys from win32com.shell import shell, shellcon shell.SHAddToRecentDocs ( shellcon.SHARD_PATHW, sys.executable ) /code To access its

[python-win32] Access Most Recently Used (MRU) entries ?

2011-06-17 Thread reckoner
Is it possible to get access to the Most Recently Used (MRU) list in windows. This is where Windows keeps a list of the most recently opened documents and programs. By the way, I'm on Windows XP. Thanks! ___ python-win32 mailing list

Re: [python-win32] Access Most Recently Used (MRU) entries ?

2011-06-17 Thread Tim Golden
On 17/06/2011 14:19, reckoner wrote: Is it possible to get access to the Most Recently Used (MRU) list in windows. This is where Windows keeps a list of the most recently opened documents and programs. By the way, I'm on Windows XP. Depends what you need to do. To add in item, use the