Hi, I'm trying to read the target file/directory of a shortcut (.lnk) file from Python. Is there a headache-free way to do it? The .lnk spec [PDF] is way over my head.
I don't mind using Windows-only APIs.
My ultimate goal is to find the "(My) Videos" folder on Windows XP and Vista. On XP, by default, it's at %HOMEPATH%\My Documents\My Videos, and on Vista it's %HOMEPATH%\Videos. However, the user can relocate this folder. In the case, the %HOMEPATH%\Videos folder ceases to exists and is replaced by %HOMEPATH%\Videos.lnk which points to the new "My Videos" folder. And I want its absolute location.
|
2
|
|
||
|
|
|
|
Create a shortcut using Python (via WSH)
Read the Target of a Shortcut using Python (via WSH)
|
||
|
|
|
Basically call the Windows API directly. Here is a good example found after Googling:
This is from http://timgolden.me.uk/python/win32_how_do_i/create-a-shortcut.html. You can search for "python ishelllink" for other examples. Also, the API reference helps too: http://msdn.microsoft.com/en-us/library/bb774950(VS.85).aspx |
||
|
|
|
|
Alternatively, you could try using SHGetFolderPath(). The following code might work, but I'm not on a Windows machine right now so I can't test it.
|
||||||
|
