GetFolderItem and AFP Mounted Disk

I am trying to use GetFolderItem to point to a file on a NAS File share mounted over AFP on Mac OS. The file is: -

afp://NAS-BDD (AFP)._afpovertcp._tcp.local/backup/Database/DBtest.sqlite

(which is how the file is displayed using File Info properties on Mac’s Finder)

I assumed, incorrectly, that I could use: -

Dim dbFile As FolderItem = GetFolderItem(“afp://NAS-BDD (AFP)._afpovertcp._tcp.local/backup/Database/DBtest.sqlite”)

but this just returns Nil.

Can someone tell me the correct way to do this?

Thanks

Phil

I think the mounted volume would be under /volumes.
/Volumes/backup or something

Ah, yes - slaps head!

This works -

dim dbfile as FolderItem = GetFolderItem("backup:Database:DBtest.sqlite")