public void FileAdded(Guid id, string path, StorageObjectState state, NotificationTrigger trigger)
 {
     if (state == StorageObjectState.Edited)
     {
         AddEditedFile(id, path);
     }
 }
 public void FileStateChanged(Guid id, string path, StorageObjectState newState, NotificationTrigger trigger)
 {
     if (newState == StorageObjectState.Edited)
     {
         AddEditedFile(id, path);
     }
     else
     {
         RemoveEditedFile(id, path);
     }
 }
 public void DirectoryStateChanged(Guid id, string path, StorageObjectState newState, NotificationTrigger trigger)
 {
 }
 public void FileEdited(Guid id, string path, StorageObjectState state, NotificationTrigger trigger)
 {
 }
 public void DirectoryAdded(Guid id, string path, StorageObjectState state, NotificationTrigger trigger)
 {
 }