C# Application Being Quarantined By Bitdefender. Any Suggestions?
Hello, I'm an amateur hobby coder and I have a C# application which has a "Open Log Folder" button in the UI. The code looks like this: ProcessStartInfo startInfo = new ProcessStartInfo { Arguments = folderPath, FileName = "explorer.exe" }; try { Process.Start(startInfo); } catch { ... } Whenever the button is clicked,…