Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/DiffEngineTray/FileEx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ public static void SafeDelete(string path)
//Swallow this since it is likely that a running test it reading or
//writing to the files, and the result will re-add the tracked item
}
catch (Exception exception)
{
ExceptionHandler.Handle($"Filed to delete '{path}'.", exception);
}
}

public static void SafeMove(string temp, string target)
Expand All @@ -38,5 +42,9 @@ public static void SafeMove(string temp, string target)
//Swallow this since it is likely that a running test it reading or
//writing to the files, and the result will re-add the tracked item
}
catch (Exception exception)
{
ExceptionHandler.Handle($"Filed to move '{temp}' to '{target}'.", exception);
}
}
}