My program is iterating over list of files and processing each of them using some library. It’s possible that file might be corrupted in the process so I want to backup it to prevent potential corruption. I implemented it this way: private static void ComprocessFiles(List<string> files) { FileInfo file = null; foreach (string filepath inRead more