top of page
- API -
reaper.AZ_WriteFile(directory,fileName,text,mode)
- API Detail -
▼入力値
directory (string):ファイルの書き出し先フォルダパス
fileName(string) : ファイル名(拡張子つける必要があります)
text(string) : ファイルに入れる文字列
mode (integer) : 0/上書き 1/末尾に追記 2/ファイル名の後に(番号)がつく
- SIMPLE SCRIPT -
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
reaper.AZ_WriteFile("F:/script/test2", "AZSTOKE.txt", "AZSTOKE is GAMEAUDIO Create", 0)
FILE/FOLDER
AZ_WriteFile
対応バージョン:
1.0.3
以降
指定テキストファイルを書きだし
bottom of page