Lua 関数の GetPath は、grandMA3 フォルダのパスを含む文字列を提供します。
この関数は、以下の2種類の型の引数で呼び出せます。
この例では、shows フォルダのパスを、2つの異なる引数指定で System Monitor に表示しています。
local function main()
Printf("Path of show files (string) is: " .. GetPath("shows", true))
Printf("Path of show files (integer) is: " .. GetPath(Enums.PathType.Showfiles))
end
return main