2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
pulsar/Pulsar/Utils/FileHelper.cs

21 lines
357 B
C#

namespace Pulsar.Utils;
public static class FileHelper
{
public static bool ValidateFile(string filePath)
{
if (!File.Exists(filePath))
{
return false;
}
var fileInfo = new FileInfo(filePath);
if (fileInfo.Length == 0)
{
return false;
}
return true;
}
}