I am writing a hookscript for TortoiseSVN using C# and SharpSvn.
It needs to get a list of external files/dirs that have been modified. I am using the method SvnClient.Status()
that recursively returns SvnStatusEventArgs
objects. These objects have the properties LocalContentStatus
, LocalNodeStatus
, LocalPropertyStatus
and LocalTextStatus
. I know that i have to use these properties to determine what I am dealing with (an external link, a modified file, ...) but I don't know what these properties exactly mean.
Correct me if I'm wrong, but I think LocalTextStatus
is some kind of display name of the status and LocalPropertyStatus
is the status of the path's properties (e.g. svn:externals or svn:needs-lock).
Thank you