How to list all files in a remote SVN repository?
This lists all files recursively:
svn ls -R URL-OF-REPO
You can try my utility fast-svn-crawler, it is much faster than "svn list --recursive".
$ svn-crawler https://myrespository.my.com/Myproject
svn list --recursive https://myrespository.my.com/Myproject
I think that works for current and all subdirectories as I tried. This one lists all branches and tags as well, and all their subdirectories and files.
Without URL
svn list --recursive -r HEAD