top of page
- API -
reaper.AZ_WriteFile(directory,fileName,text,mode)
- 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
- 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
Supported versions:
1.0.3
onwards
Write the specified text file
bottom of page