Windows Folders

  • Thread starter Thread starter VP Borza
  • Start date Start date
V

VP Borza

Hello,

How can i find the full path of a file that looks something like this
"%SystemFolder%/notepad.exe" ?
Full path should look like this: C:\Windows\notepad.exe
 
Hi borza,

dim mypath as string =
Environment.GetFolderPath(Environment.SpecialFolder.System)

Did you mean this?

Cor
 
Back
Top