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 240 views
1 answer 171 views
171 views asked Mar 9, 2017 by avibootz
1 answer 179 views
1 answer 181 views
1 answer 190 views
...