
Workaround: Use directory junctions or symlinks with mklink /D or mklink /J .
In this guide, you'll learn exactly what hard links are, how to create them, when to use them, and the critical pitfalls to avoid. windows hard link
Suppose you have a file called original.txt in the C:\Documents directory. You create a hard link to this file called hardlink.txt in the C:\Users directory. Both original.txt and hardlink.txt point to the same file data on disk. Workaround: Use directory junctions or symlinks with mklink
A copy is two independent files. Change one, the other stays old. A hard link is one file with two names. how to create them