ExportCSV(filename, export_data)

説明

Lua 関数の ExportCSV は、Lua のテーブルをCSV形式でエクスポートします。

引数

戻り値

この関数は何も返しません。

ビルドの詳細テーブルをエクスポートするには、以下のようなコードでプラグインを作成します。

local function main()
    local build = BuildDetails()                                                --BuildDetails() creates a table with information about the software build.

    local exportPath = GetPath(Enums.PathType.Library) .. "/BuildDetails.csv"   --The path and filename is stored in a variable.

    ExportCSV(exportPath, build)                                                --The actual export function.

    Printf("The build details is exported to: " .. exportPath)                  --Print some feedback.
end

return main