GetPath(string[, boolean] | integer)

説明

Lua 関数の GetPath は、grandMA3 フォルダのパスを含む文字列を提供します。

この関数は、以下の2種類の型の引数で呼び出せます。

引数

制限:
フォルダの作成は、引数が string の場合にのみ機能します。

戻り値

この例では、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