Microsoft's server returns the 4 extra characters above before the path.
Not sure if this is common in all versions of Microsoft servers.
Is there a common function to test for this?
Abyss correctly returns the path.
Kludge: can't use 4 characters in this posting
Not sure if this is common in all versions of Microsoft servers.
Is there a common function to test for this?
Abyss correctly returns the path.
Kludge: can't use 4 characters in this posting
Code:
LOCAL ThePath AS STRING ThePath = AppPath IF LEFT$(ThePath,4) = "those 4 characters" THEN ThePath = MID$(ThePath,5) END IF
Comment