Eh? Sorry I've just got home after a Night shift and have been up for over 24 hours now, so my brain might be a bit muddled.
GLOBAL gPlatform$
GLOBAL gSavePath$
GLOBAL gDocsPath$
GLOBAL gTempPath$
gPlatform$=PLATFORMINFO$("")
gSavePath$=PLATFORMINFO$("APPDATA")
gDocsPath$=PLATFORMINFO$("DOCUMENTS")
gTempPath$=PLATFORMINFO$("TEMP")
PRINT gSavePath$,10,10
PRINT gDocsPath$,10,20
PRINT gTempPath$,10,30
SHOWSCREEN
KEYWAIT
They all perform exactly as I would expect. You don't pass strings TO them, you get strings FROM them to use to do various things.
What exactly are you trying to achieve?