obtain the users temporary directory

  • Thread starter Thread starter ngrTerry
  • Start date Start date
N

ngrTerry

My program requires that I need to locate the temporary directory of
the currently logged on user.
Please caould someone tell ne in VBNET2005 how this could be best
achieved.

Many thanks in advance for feedback.

Terry
 
My program requires that I need to locate the temporary directory of
the currently logged on user.
Please caould someone tell ne in VBNET2005 how this could be best
achieved.

Many thanks in advance for feedback.

Terry

found the answer to this
Dim m_TempPath As String = System.IO.Path.GetTempPath()
 
Back
Top