top of page
- API -

addedPathList = reaper.AZ_SVN_Add(localPath, excludeList, isRegex)

- API Detail-

▼Input value

  • localPath(string) : Local path
  • excludeList(StringArray) : Exclude list (optional, default: empty)
  • isRegex(boolean) : Regular expression (optional, default: true)

▼Output value

  • addedPathList(StringArray) : Added path list
- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())              

require("reaper_AZSTOKE_GOLD")              


localPath = "D:\\test\\new-repo"


list = reaper.AZ_SVN_Add(localPath, {".*txt"}, true) 


ShowObject(list)

SVN

AZ_SVN_Add

Supported versions:

1.3.0

onwards

Adding files to SVN version control

bottom of page