VB-Tec.de Visual Basic - Technik, FAQ, Tricks, BeispieleTemp-Verzeichnis bestimmen |
Function TempDir() As String
Static Path As String
If Path = "" Then
'Pfad bestimmen:
Path = Environ$("TEMP")
If Path = "" Then
Path = Environ$("TMP")
If Path = "" Then Path = "C:\Temp"
End If
'Pfad "normieren" und ggf. anlegen:
If Right$(Path, 1) <> "\" Then Path = Path & "\"
On Error Resume Next
MkDir Path
On Error GoTo 0
End If
TempDir = Path
End Function
© Jost Schwider, 16.09.2000-16.09.2000 - http://vb-tec.de/tempdir.htm