Referencing Build Copy Files

If I copy my dictionary into the App Resources in the Build Steps

…/Default Dictionary.txt

What is the path I reference from within my App?

Right click on the built file and show package contents. Look for your dictionary file and then find the special folder that matches that. You can right click “help on specialfolder” in the source to open the Lang ref.

Use SpecialFolder.Resources that’ll point you to the right place on all three platforms.

Just checking. Even though you said SpecialFolder.Resources is the reference actually
.resource

Dim fdict As FolderItem
fdict = SpecialFolder.Resource(“Default Dictionary.txt”)

Can the Resource folder be written to by the user, or should I keep files that need write access in the Program Data folder on Windows?