GetCommonPath()

作者: majkinetor 最近更新时间: 20061020


This function will return some standard system folders. Omit CSIDL_ when calling it. If you use it a lot, move CSIDL_ declarations out of function so they are not instantiated every time.

GetCommonPath( csidl )

关于函数的参数和返回值, 请参阅其源码.

备注

关于此函数(集)的更新细节和注意事项, 请参见 AutoHotkey 论坛: http://www.autohotkey.com/forum/topic10325.html

许可

不存在

示例

; #Include GetCommonPath.ahk
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%

MsgBox % GetCommonPath("StartUp")