mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
21 lines
357 B
C#
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;
|
|
}
|
|
} |