I am building a project in C# dot net in which i want to detect any save operation of windows to run my project.
It means that when user do any save operation then project will also create a copy of that saving file.
So please help to detect any save operation in windows
I am building a project in C# dot net in which i want to
Share
You can detect modification of files using FileSystemWatcher class.
If you want to detect file modification in Visual Studio than you might need to write a VS extension.
By the sound of it all you need is a source control software, like Subversion, Mercurial or Git.