Need file tracking program [closed]
We don’t allow questions seeking recommendations for books, tools, softw开发者_Python百科are libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this questionDoes anybody know is there any open source program or web app for file tracking (not version control, much simpler, add name of new file, add user, add users to some file, set privileges to user,track revision of file, notify user for change - most of time it will work with .doc files) writen in Java, Python, C# or Haskell ?
It sounds like you want both version control and a web interface to it. One approach would be something like gitit/darcsit, a wiki/cms system with a git or darcs backend: http://gitit.net/
Im not exactly sure what you mean by it, but there are tools/utilitys such as git that can be used for tracking changes in files and restoring if needed.
I wonderful compliment to git is github that can be used for collaborative project work
You are asking about version control such as CVS,CM Synergy .But if you want to keep track on a file then , there is an API for this
JNotify java API JNotify is a java library that allow java application to listen to file system events, such as:
* File created * File modified * File renamed * File deleted
Code Samples found here.
http://jnotify.sourceforge.net/sample.html
精彩评论