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.
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.
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()