top of page
- API -

fileList = reaper.AZ_GetFilePathList(pathStr,searchStr)

- API Detail-

▼Input value

  •  pathStr (string): Search folder path ※Lua can be written in Japanese as is
  •  searchStr(string): Specified file format *”wav”Optional: If not specified, retrieve regardless of file extension

 ▼Output value

  •  fileList(table)(string): Array output of information for each path
- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())

require("reaper_AZSTOKE_SILVER")


fileList = reaper.AZ_GetFilePathList("F:\\script\\テスト","wav")


for i, value in pairs(fileList) do

    Msg(value)

end

FILE/FOLDER

AZ_GetFilePathList

Supported versions:

1.3.0

onwards

Outputs the file path list of the specified folder path as an array

bottom of page