How to get the windows temp path in VB.NET

1 Answer

0 votes
Imports System.IO

Module Module1

    Sub Main()

        Dim s As String = Path.GetTempPath()

        Console.WriteLine(s)

    End Sub

End Module

' run:
' 
' C:\Users\user_name\AppData\Local\Temp\

 



answered Aug 17, 2018 by avibootz

Related questions

1 answer 230 views
1 answer 165 views
165 views asked Mar 9, 2017 by avibootz
1 answer 164 views
1 answer 170 views
1 answer 188 views
...