-1

I want to print the modified/removed/deleted/added files details in text file using SharpSvn.Update

 SvnUpdateResult result;
 client.Update(path,out result);

But this code only returns the revision number not the changes details.

Bert Huijben
  • 19,525
  • 4
  • 57
  • 73
  • possible duplicate of [SharpSvn: How can I see Update()'s result?](http://stackoverflow.com/questions/3767081/sharpsvn-how-can-i-see-updates-result) – Bert Huijben Mar 23 '15 at 12:08

1 Answers1

0

If you want more details on what the update did, you should hook the Notify event. SharpSvn provides this event on both the SvnClient and the optional SvnUpdateArgs class instance that you pass to .Update()

See SharpSvn: How can I see Update()'s result?

Community
  • 1
  • 1
Bert Huijben
  • 19,525
  • 4
  • 57
  • 73