delete temporary file

pull/2530/head
2dust 2022-07-30 20:16:13 +08:00
parent 9a8b4593e1
commit 359c6e0f02
1 changed files with 4 additions and 0 deletions

View File

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