Correct the bitmask for fileSupportsExtendedAttributes and add link

This commit is contained in:
aneesh-n 2024-08-03 18:06:47 -06:00
parent 041c0705e4
commit 8c8a066c0e
No known key found for this signature in database
GPG Key ID: 6F5A52831C046F44
1 changed files with 2 additions and 1 deletions

View File

@ -61,7 +61,8 @@ var (
const (
// fileSupportsExtendedAttributes is a bitmask that indicates whether the file system supports extended attributes.
fileSupportsExtendedAttributes = 0x00000004
// https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/ntifs/ns-ntifs-_file_fs_attribute_information
fileSupportsExtendedAttributes = 0x00800000
)
// ExtendedAttribute represents a single Windows EA.