2,748
社区成员




? GetDesktopFolder()
Function GetDesktopFolder()
Local cPath
Declare Long SHGetSpecialFolderPath in shell32 Long, String @, Long, Long
m.cPath = Replicate(Chr(0), 260)
SHGetSpecialFolderPath(0, @ m.cPath, 0x0010, 0)
m.cPath = Rtrim(m.cPath, Chr(0))
Return m.cPath
EndFunc