Mega Code Archive

 
Categories / VB.Net / Windows System
 

Use Process to access favorite path

Imports System Imports System.Diagnostics Imports System.ComponentModel    Class MyProcess        Shared Sub Main()          Dim myFavoritesPath As String = Environment.GetFolderPath(Environment.SpecialFolder.Favorites)          Process.Start(myFavoritesPath)       End Sub    End Class