Sim , o NTFS oferece suporte a links físicos :
Hard Links
A hard link is the file system representation of a file by which more than one path references a single file in the same volume. To create a hard link, use the CreateHardLink function. Any changes to that file are instantly visible to applications that access it through the hard links that reference it. However, the directory entry size and attribute information is updated only for the link through which the change was made. Note that the attributes on the file are reflected in every hard link to that file, and changes to that file's attributes propagate to all the hard links. For example if you reset the READONLY attribute on a hard link to delete that particular hard link, and there are multiple hard links to the actual file, then you will need to reset the READONLY bit on the file from one of the remaining hard links to bring the file and all remaining hard links back to the READONLY state.
For example, in a system where
C:
andD:
are local drives andZ:
is a network drive mapped to\fred\share
, the following references are permitted as a hard link:
C:\dira\ethel.txt
linked toC:\dirb\dirc\lucy.txt
D:\dir1\tinker.txt
toD:\dir2\dirx\bell.txt
C:\diry\bob.bak
linked toC:\dir2\mina.txt
The following are not:
C:\dira
linked toC:\dirb
C:\dira\ethel.txt
linked toD:\dirb\lucy.txt
C:\dira\ethel.txt
linked toZ:\dirb\lucy.txt