Check file exists

This commit is contained in:
Jack251970 2025-06-04 23:31:18 +08:00
parent 6d5b95c616
commit a761ec880b

View file

@ -101,7 +101,10 @@ public abstract class FirefoxBookmarkLoaderBase : IBookmarkLoader
// Delete temporary file
try
{
File.Delete(tempDbPath);
if (File.Exists(tempDbPath))
{
File.Delete(tempDbPath);
}
}
catch (Exception ex)
{