10
votes

I would like to generate a list of all the files that have been modified within my project. I know I could view the history on the project to get all the changesets and then view each changeset for the files in contains, however, this process would take a long time. Is there an easier way to generate this list? The list does not need to be unique, but that would be nice.

Thanks!

3

3 Answers

9
votes

In Source Control Explorer click the folder that contains the files you want to check and hit the Compare Folders button. This will let you see everything that is different between the server source path and the local path.

3
votes

You can do this using the command line. The only problem is that you also see info about folders that haven't changed.

For example: tf diff /format:Brief $/Path/To/Solution;C12345~C12355 /recursive

0
votes

I had a similar problem recently and I wrote a program to get the list of files that have changed. Here's a link to the example I used to create my program Diffing two trees