top of page

function Msg(param)

   reaper.ShowConsoleMsg(tostring(param).."\n")

end


reaper.AZ_WriteFile("F:/script/test2", "AZSTOKE.txt", "AZSTOKE is GAMEAUDIO Create", 0)

- SCRIPT -

reaper.AZ_WriteFile(directory,fileName,text,mode)

- API -

ID

FILE/FOLDER

reaper.AZ_WriteFile

対応バージョン:

1.0.0

以降

Write the specified text file

- API Detail-

▼Input value

directory (string): Folder path to write the file to

fileName(string) : File name (must include extension)

text(string) : The string to put in the file

mode (integer) : 0/overwrite 1/append to the end 2/add (number) to the file name


▼Output value

retval(boolean): Success or failure of API execution

bottom of page