delete temporary file

This commit is contained in:
2dust 2022-07-30 20:16:13 +08:00
parent 9a8b4593e1
commit 359c6e0f02

View file

@ -94,6 +94,10 @@ namespace v2rayN.Tool
}
}
}
if (File.Exists(fileName))
{
File.Delete(fileName);
}
}
catch (Exception ex)
{