The need
I want a list of versioned files from a path which is a working copy of SVN repository using the python SVN SWIG API.
Below is the approach I've taken, but if it's wrong just point me in the right direction.
An approach
It seems that you'd do this via C API with svn_client_list2
function. So calling that via python SVN API SWIG bindings could be an option and that's where I ran in to trouble: http://stackoverflow.com/questions/1298869/how-can-i-call-the-svn-client-svnclientlist2-with-python-svn-api-swig-bindings.