in reply to Traversing SVN Tree
If on the other hand you're talking about querying the subversion server, then you can get the info with a subversion command such as svn list -R. For example:
Joemy $repos = q{svn://.../trunk}; my $svn = q{/usr/local/bin/svn}; my $tree = qx{$svn list -R $repos}; print $tree;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Traversing SVN Tree
by brwarn (Novice) on Mar 06, 2008 at 05:56 UTC | |
by blahblahblah (Priest) on Mar 07, 2008 at 01:09 UTC |