Userfolder variables?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Rashka
    Forum Member
    • Feb 2009
    • 8

    Userfolder variables?

    Hi there,

    I've searched for about 2 hours in the forum but can't find what I'm looking for.

    I need to create an icon that links on the "My documents" folder of this User (in german it is "Eigene Dateien").

    so if I use "_DesktopFolder.." i get access to the Desktop of the logged in User, is there a variable to open the Users "My Documents", "My Documents/My Music", "My Documents/My Movies"?

    looking forward to hearing from you soon,
    Rashka
    Last edited by Rashka; 03-18-2009, 07:51 AM.
  • jackdaniels
    No longer a forum member
    • Mar 2007
    • 533

    #2
    Here it is;

    Code:
    myDocsFolder = Shell.GetFolder(SHF_MYDOCUMENTS);
    File.ExploreFolder(myDocsFolder.."\\My Movies");

    Comment

    • Rashka
      Forum Member
      • Feb 2009
      • 8

      #3
      Thanks a lot

      Comment

      Working...
      X