How to find out programatically which files have been changed in a
change set?
If you have the IChangeSet you can do:
List<IChange> changes = changeset.changes();
for (IChange change : changes) {
change.item() //this is the changed file/folder
}
- Dmitry