I am trying to get a specific changeset by it\'s changesetid. It is working. The problem is I can\'t get the files affected by that changeset.
Changeset chan
You are already iterating over the Changes in your code. The affected File is in the Item property of the Change type.
Item
Change
in your case: w.Item.ServerItem --> This is the Serverpath of the File like '$/A/B/C.txt'
w.Item.ServerItem
'$/A/B/C.txt'
You can download it by using w.Item.DownloadFile(@"C:\local.txt")
w.Item.DownloadFile(@"C:\local.txt")