Imports System.IO Module GetTempPath Sub GetTempPathA_Main() Dim tempPath As String = Path.GetTempPath() Console.WriteLine("Temporary path: " & tempPath) End Sub End Module