mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
17 lines
471 B
C#
17 lines
471 B
C#
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Wabbajack.Hashing.xxHash64;
|
|
using Wabbajack.Paths;
|
|
using Wabbajack.Paths.IO;
|
|
|
|
namespace Wabbajack.VFS;
|
|
|
|
public static class AbsolutePathExtensions
|
|
{
|
|
public static async Task<Hash> Hash(this AbsolutePath src, CancellationToken token)
|
|
{
|
|
await using var fs = src.Open(FileMode.Open, FileAccess.Read, FileShare.Read);
|
|
return await fs.HashingCopy(Stream.Null, token);
|
|
}
|
|
} |