Is there a program for Mac and Windows that I can set to start watching a folder at a certain time in the morning when I start to work and then it tells me which files I have edited later on in the day? This would be really helpful when merging parts of projects that I work on with parts that another person has worked on.

link|improve this question
I'm guessing you already use a version control system, since you tagged this as version-control. Which one? – Yannis Rizos Dec 3 '11 at 11:07
1  
but i tough that was the main reason for why we use version-control no ? – Achmas Qchmqs Maladé Dec 3 '11 at 11:09
Git . Download PAGE – Pankaj Upadhyay Dec 3 '11 at 11:26
I'm migrating this to Super User, but you should add more information to this to ensure you get good answers. – ChrisF Dec 5 '11 at 11:48
feedback

migrated from programmers.stackexchange.com Dec 5 '11 at 11:49

This question came from our site for professional programmers interested in conceptual questions about software development.

2 Answers

up vote 0 down vote accepted

These may be of interest:

Changed files on VISTA

ChangedFiles

link|improve this answer
feedback

For the Mac you can use the find command to give you a list of all files that have been modified within the past N seconds. There are versions of this program that run on windows, too.

Your other choice is to write your own command. Most modern languages give you access to the filesystem, and give you access to file information such as the last modified time. You should be able to write one in less time than it took to write this question and wait for an answer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown