Ich kenne da auch nichts bezügl. ini, aber ich mache es eigentlich umgekehrt bei solchen Geschichten:
Ich speichere die Daten immer ins Windows-Temp-Verzeichnis, welches ich mir so hole:
Public Function WinTemp As String
On Error Goto Errorhandler
Dim session As New NotesSession
Dim strNotesDataPath As String
Dim strExistsPath As String
Dim strTempPath As String
strTempPath=Environ$("Temp")
If strTempPath="" Then
strTempPath=Environ$("Tmp")
End If
If strTempPath="" Then
strNotesDataPath = session.GetEnvironmentString("Directory",True)
strExistsPath = strNotesDataPath & "\Temp"
If Dir$(strExistsPath,16) = "" Then
Mkdir strNotesDataPath & "\Temp"
strTempPath = strNotesDataPath & "\Temp"
Else
strTempPath = strNotesDataPath & "\Temp"
End If
End If
WinTemp = strTempPath
GoOut:
Exit Function
ErrorHandler:
Call ErrorMsg
Resume GoOut
End Function