When updating the bin folder, skip the file if it already exists.

https://github.com/2dust/v2rayN/issues/6515
This commit is contained in:
2dust
2025-01-17 10:27:29 +08:00
parent 171132be12
commit cf1a8599eb
2 changed files with 22 additions and 17 deletions

View File

@@ -39,5 +39,14 @@ namespace AmazTool
};
process.Start();
}
public static void Waiting(int second)
{
for (var i = second; i > 0; i--)
{
Console.WriteLine(i);
Thread.Sleep(1000);
}
}
}
}