I am writing a c# app that needs to look at a folder and get a list of files that need to be committed. Tortoise SVN is guaranteed to be installed on the machine. How can I get that list programmatically?
Asked
Active
Viewed 1,055 times
3 Answers
4
I don't think that TortoiseSVN can help you with this, but it should not be too much effort doing it yourself using a C# SVN library.
Take a look at this question: Does anyone know of a good C# API for Subversion?.
-
Ah, I overlooked this one when I posted my link as a comment to the question. – sbi Dec 21 '10 at 17:11
-
Seems like using SharpSVN would be the best option. – Bernard Dec 21 '10 at 17:12
0
I don't believe TortoiseSVN has an API that allows external applications to retrieve information from it, which is what you would need to do this properly. The best you can do with what is provided is use the SubWCRev command-line utility to determine if any local modifications exist in a given working copy.

Bernard
- 7,908
- 2
- 36
- 33