When I fill a path into FolderItem the result is very strange.
[code]Dim ConfigDbFile As FolderItem
Dim strFilepath As String
strFilepath = “/Users/paul/MyApp/MyApp.app/Contents/Resources/MyApp.cfg”
ConfigDbFile = New FolderItem(strFilePath)
[/code]
When I look into ConfigDbFile the result is totally different from what I would expect.
NativePath contains following data:
I’ve changed it into ConfigDbFile = New FolderItem(strFilePath, FolderItem.PathTypeNative).
Now I get the correct results.
Thanks for pointing me in the right direction Norman.