I am making an application in which I need to keep a check on all the properties of a word file like Last Updated,Name etc I also need Last Updated by, i.e the user who made changes in the file. How can I get this information?
EDIT
This is what I am doing: FileInfo[] wordFiles = dirInfo.GetFiles("*.doc"); I am extracting other properties like this:
wordFiles. (and all the properties are listed but not the one i am looking for) I am looking for some code in C# which can help me.