Hard Link Windows //free\\ <4K>
fsutil hardlink query "filename" Or use PowerShell:
1. What Is a Hard Link? A hard link is a directory entry that associates a name with a file on the file system. In simple terms: it’s an additional filename that points directly to the same physical file data on disk. hard link windows
New-Item -ItemType HardLink -Path C:\Links\report.txt -Target C:\Data\report.txt PowerShell 5.1+ supports this natively. For older versions, use cmd /c mklink /H . Call CreateHardLinkW : fsutil hardlink query "filename" Or use PowerShell: 1