FileSystemWatcher

FileSystemWatcher class is useful if you want to monitor your files within the folder. You can monitor them without letting anyone know. Para ka nang nag-hack if you know how to tweak these codes.

The code are as follows:


static void Main(string[] args)
{
// Create an instance of FileSystemWatcher
FileSystemWatcher fsw = new
FileSystemWatcher(Environment.GetEnvironmentVariable("USERPROFILE"));

// Set the FileSystemWatcher properties
fsw.IncludeSubdirectories = true;
fsw.NotifyFilter = NotifyFilters.FileName | NotifyFilters.LastWrite;

// Add the Changed event handler
fsw.Changed += new FileSystemEventHandler(fsw_Changed);
fsw.Deleted += new FileSystemEventHandler(fsw_Deleted);
fsw.Renamed += new RenamedEventHandler(fsw_Renamed);
fsw.Created += new FileSystemEventHandler(fsw_Created);

fsw.EnableRaisingEvents = true;
}




You need to create events because its not yet defined. For more info visit MSDN