UseHardLinks Property
Whether the virtual filesystem supports hard links.
Syntax
public boolean isUseHardLinks(); public void setUseHardLinks(boolean useHardLinks);
Default Value
False
Remarks
This property specifies whether the virtual filesystem should indicate to the system that it supports hard links to files.
If this property is enabled, the application must properly handle the CreateHardLink, EnumerateHardLinks, and CloseHardLinksEnumeration events in order for hard links to function correctly. The GetFileNameByFileId event must be handled as well, and the GetFileInfo must always be sure to return the number of hard links a file has by setting the HardLinkCount event parameter appropriately.
Note that hard links are an expected feature of the NTFS filesystem; if the application is identifying its virtual filesystem (via FileSystemName) as NTFS, supporting hard links is recommended.
Please refer to the Hard Links topic for more information.
Note: This property cannot be changed when Active is true, and cannot be changed within events.