top of page
- API -
fileList = reaper.AZ_SVN_GetFileList(repositoryUrl, revision, excludeList, isRegex)
- API Detail-
▼Input value
repositoryUrl(string) : Repository URL
revision() : Revision (optional, default: )
excludeList(StringArray): Exclusion list (optional, default: empty)
isRegex(boolean): Regular expression (optional, default: true)
▼Output value
fileList(StringArray): List of files in the repository
- SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_GOLD")
userName = "testuser"
password = "testpass"
url = -- SVN repository url
reaper.AZ_SVN_SetAuth(userName , password )
fileList = reaper.AZ_SVN_GetFileList(url, -1, {".*txt"}, true)
ShowObject(fileList)
SVN
AZ_SVN_GetFileList
Supported versions:
1.3.0
onwards
Listing files in a repository

bottom of page