Get " My Music" directory

  • Thread starter Thread starter igul222
  • Start date Start date
I

igul222

I have a text input, and I would like the default text in it to be the
path to the current user's My Music directory. How can this be achieved?
 
igul222 said:
I have a text input, and I would like the default text in it to be the
path to the current user's My Music directory. How can this be achieved?

Text1.Text = Microsoft.VisualBasic.FileIO.SpecialDirectories.MyMusic
 
igul222 said:
I have a text input, and I would like the default text in it to be the
path to the current user's My Music directory. How can this be achieved?

'Environment.GetFolderPath(Environment.SpecialFolder.MyMusic)'.
 
Back
Top