Files
Hua.DDNS/Hua.DDNS/Common/FileHelper.cs
T
2022-10-23 00:19:40 +08:00

14 lines
246 B
C#

namespace Hua.DDNS.Common
{
public class FileHelper
{
public static void DeleteIfExists(string path)
{
if (File.Exists(path))
{
File.Delete(path);
}
}
}
}