How to list all files and sub-folders with SVN repository path using command line in Windows
1 min readAug 17, 2017
Requirements:
- Windows command processor
- SVN (like Tortoise)
- Target Repository
Steps:
- Open Windows Command Processor.
- Run this command:
svn ls -depth infinity http://<URL OF YOUR TARGET REPOSITORY>
You have other options for the depth. For my case, I used infinity because I need the path of all files and sub-folders inside my target repository.