Using Python, 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.
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Possible: yes, easy yes.
the challenge though is choosing which MRU to choose from… windows and programs stores dozens of em – windows alone probably stores 6 of them.
presuming you want the Windows run dialogue you can get it like so (Python 2x syntax, tested on python 2.7):
Of course then you’ll have to do whatever you want to do with that but that should get you started.
Pacific