Skip to content

Instantly share code, notes, and snippets.

@NPS-ARCN-CAKN
Created April 5, 2018 18:18
Show Gist options
  • Save NPS-ARCN-CAKN/3012236409fc485d644f9cbb1a79f428 to your computer and use it in GitHub Desktop.
Save NPS-ARCN-CAKN/3012236409fc485d644f9cbb1a79f428 to your computer and use it in GitHub Desktop.
VB .NET: Loop through Environment.SpecialFolders
For Each SpecialFolder As Environment.SpecialFolder In System.Enum.GetValues(GetType(Environment.SpecialFolder))
Debug.Print(System.Environment.GetFolderPath(SpecialFolder))
Next
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment