PDA

View Full Version : "Adding" variable



prisch
07-13-2009, 03:40 AM
Hi

I would like to do following:

LocalPfad = "";
LocalPfad = Shell.GetFolder(SHF_APPLICATIONDATA_LOCAL) & "FileMaker\\Extensions";
Folder.Create(LocalPfad)

Of course this does not work. Can somebody tell which operator I have to use to add the second part "Filemaker..." to the GetFolder path?

Thanks-

Patrick

jassing
07-13-2009, 10:29 AM
You'll use ".." -- don't forget to add initial back slashes as well.

prisch
07-14-2009, 06:39 AM
Thanks for the help.