7 lines
204 B
C#
7 lines
204 B
C#
namespace Infrastructure.Verticals.Files;
|
|
|
|
public interface IHardlinkFileService
|
|
{
|
|
void PopulateInodeCounts(string directoryPath);
|
|
ulong GetHardLinkCount(string filePath, bool ignoreRootDir);
|
|
} |