LANCommander/LANCommander.Server.Services/Helpers/FileHelpers.cs
Aaron Powell 0e5a8c5be2 Ensuring that the download endpoints will receive correctly pathed folders for data directory
Also adding logging throughout the download endpoints
2025-12-17 22:52:28 +11:00

11 lines
232 B
C#

namespace LANCommander.Helpers
{
public static class FileHelpers
{
public static void DeleteIfExists(string? path)
{
if (File.Exists(path))
File.Delete(path);
}
}
}