Given a particular path of folder in tfs, I need to recursively find all files and folders within the folder for a given changeset. In other words, i need to get the transitive closure of a path in tfs for a given changeset. The problem I'm facing in doing so is listing the contents of a particular folder within tfs.. How would this be possible in C# ?
|
feedback
|
|
I'm assuming you want 'folder contents as of changeset X' and not 'folder contents that were part of changeset X' GetItems is the right call to use, just pass in a version spec for the changeset you're interested in. http://msdn.microsoft.com/en-US/library/bb138911.aspx so, assuming you already have a reference to the VersionControlServer instance:
If I misunderstood and you happen to want to 'folder contents that were part of changeset X', there's a few different ways of doing it, but getting the changeset with GetChangeset and just filtering the Changes is pretty simple. | ||||
|
feedback
|
|
Something like this might be more what you're looking for. This gets all changes in a changeset and iterates through them, identifying the ones in the given path. This could be shortened with a linq query, but I'm leaving it a bit more expanded to give the gist of what I'm trying to say:
| |||||
feedback
|
|
I think something like this would work..
If you have any other ideas, please post them.. | |||
feedback
|
|
You can use the changeset webservice to get an XML document that contains all of the changed items for a particular changeset. Then just loop through the list of changed items and see if they are in the path you are looking for. Here's the URL to the changeset webservice: http:// | |||||
feedback
|