top of page
- API -
text = reaper.AZ_ReadFile(directory,fileName)
- API Detail-
▼Input value
directory (string): Folder path to read the file
fileName(string) : File name (must include extension)
▼Output value
retval(boolean): Success or failure of API execution
text(string) : The text of the loaded file
- SCRIPT -
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
text = reaper.AZ_ReadFile("F:/script/test2", "AZSTOKE.txt")
Msg(text)
FILE/FOLDER
AZ_ReadFile
Supported versions:
1.0.3
onwards
Read the specified text file
bottom of page