Export(filename, export_data)

説明

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

この関数は Import と対をなすものです。

関連する関数として、オブジェクト用の Export があります。

引数

戻り値

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

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

local function main()
    local build = BuildDetails()                                                 --BuildDetails() creates a table with information about the software build.
    
    local exportPath = GetPath(Enums.PathType.Library) .. "/BuildDetails.xml"    --The path and filename is stored in a variable.
    
    Export(exportPath, build)                                                    --The actual export function.
    
    Printf("The build details is exported to: " .. exportPath)                   --Print some feedback.
end

return main