top of page
- API -

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

- API Detail-

▼Input value

  • directory (string): Destination folder path for file output
  • fileName(string): File name (must include extension)
  • text(string): Text string to write to the file
  • mode (integer): 0/Overwrite 1/Append to end 2/Append (number) after filename

- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())

require("reaper_AZSTOKE_SILVER")


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

FILE/FOLDER

AZ_WriteFile

Supported versions:

1.0.0

onwards

Write the specified text file

bottom of page