internal static void TryDeleteFile()

in src/Utilities.cs [196:202]


        internal static void TryDeleteFile(string path)
        {
            if (File.Exists(path))
            {
                ExceptionFilters.RunTraceSwallow(() => { File.Delete(path); }, $"TryDeleteFile: failed to delete file '{path}'", SharedTracer.Tracer);
            }
        }