説明
ExportCSV 関数は、Lua のテーブルをCSV形式でエクスポートします。
引数
- Filename:
エクスポートされるファイルの名前を指定する文字列です。ファイル名には、パス全体が含まれている必要があります(後述の例を参照)。
- Export_data:
エクスポートされるデータです。テーブル・オブジェクトである必要があります。
戻り値
この関数は何も返しません。
例
ビルドの詳細テーブルをエクスポートするには、以下のようなコードでプラグインを作成します。
|
return function() local build = BuildDetails() local exportPath = GetPath(Enums.PathType.Library) .. "/BuildDetails.csv" local success = ExportCSV(exportPath, build) if success then Printf("The export was stored at: " .. exportPath) else Printf("The export failed.") end end |