Guest MVB Posted August 13, 2007 Posted August 13, 2007 Hello All, I want to retrive the Target Path of shortcut file on Windows using C. Can anyone help me in this? Thanks, MVB
Guest Brian A. Posted August 13, 2007 Posted August 13, 2007 Re: How to retrive target file from a shorcut file using C? In the shortcuts properties click the "Find Target" button. -- Brian A. Sesko { MS MVP_Shell/User } Conflicts start where information lacks. http://basconotw.mvps.org/ Suggested posting do's/don'ts: http://www.dts-l.org/goodpost.htm How to ask a question: http://support.microsoft.com/kb/555375 "MVB" <madhurabhangay@yahoo.com> wrote in message news:1186991819.846718.75110@g12g2000prg.googlegroups.com... > Hello All, > I want to retrive the Target Path of shortcut file on Windows using C. > Can > anyone help me in this? > > Thanks, > MVB >
Guest MVB Posted August 13, 2007 Posted August 13, 2007 Re: How to retrive target file from a shorcut file using C? On Aug 13, 1:12 pm, "Brian A." <gonefish'n@afarawaylake> wrote: > In the shortcuts properties click the "Find Target" button. > > -- > > Brian A. Sesko { MS MVP_Shell/User } > Conflicts start where information lacks.http://basconotw.mvps.org/ > > Suggested posting do's/don'ts: http://www.dts-l.org/goodpost.htm > How to ask a question: http://support.microsoft.com/kb/555375 > > "MVB" <madhurabhan...@yahoo.com> wrote in message > > news:1186991819.846718.75110@g12g2000prg.googlegroups.com... > > > > > Hello All, > > I want to retrive the Target Path of shortcut file on Windows using C. > > Can > > anyone help me in this? > > > Thanks, > > MVB- Hide quoted text - > > - Show quoted text - I want to retrieve the path using C programming. Is there any means to do that?
Guest Kelly Posted August 13, 2007 Posted August 13, 2007 Re: How to retrive target file from a shorcut file using C? Dim sShortcutPath As String Dim oShortcut As Object Dim oShell As New WshShell sShortcutPath = < path and filename of link file > Set oSh = oScr.CreateShortcut(fn) -- All the Best, Kelly (MS-MVP/DTS&XP) Taskbar Repair Tool Plus! http://www.kellys-korner-xp.com/taskbarplus!.htm "MVB" <madhurabhangay@yahoo.com> wrote in message news:1186991819.846718.75110@g12g2000prg.googlegroups.com... > Hello All, > I want to retrive the Target Path of shortcut file on Windows using C. > Can > anyone help me in this? > > Thanks, > MVB >
Recommended Posts