12 lines
231 B
C#
12 lines
231 B
C#
|
|
namespace LANCommander.Helpers
|
|||
|
|
{
|
|||
|
|
public static class FileHelpers
|
|||
|
|
{
|
|||
|
|
public static void DeleteIfExists(string path)
|
|||
|
|
{
|
|||
|
|
if (File.Exists(path))
|
|||
|
|
File.Delete(path);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|