> How about: > put baSysFolder("46") > -- "C:\Documents and Settings\All Users\Documents\"
Now why didn't I know that? It's so obvious.
:D
Gary dropped a pointer in his docs, where he mentions:
"As well as the above folders, you can also pass in the number of a special folder. These numbers are listed in the ShlObj.h header file in the Windows Platform SDK. For example, to get the Cookies folder, you can use baSysFolder( "33" ). If you pass in a number, it will be passed directly to the SHGetSpecialFolderLocation API call."
Leading to:
--
on mShowSpecialFolders
repeat with f = 0 to 60 -- 255
put f, baSysFolder(string(f))
end repeat
end[To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [email protected] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
