Backing Up and Restoring Hard Links
To back up and restore hard links, use the CreateFile, CreateHardLink, FindFirstFileNameW, FindNextFileNameW, BackupRead, GetFileInformationByHandle, and BackupWrite functions as shown in the following pseudocode examples.
Pseudocode Algorithm for Backing Up Hard Links
1. Initialize and empty a list of known links.
2. While there are more files to back up
3. Read the disk and get the next file.
4. Call CreateFile to open the file for read.
5. Call GetFileInformationByHandle to get the NumberOfLinks
and the FileIndex.
6. If the NumberOfLinks is greater than 1
7. Search the list of known links, looking for the
same FileIndex.
8. If a match is found
9. Skip this file; its link exists already on
your backup media.
10. Else
11. Add the full path of the file and the FileIndex
to the list of links.
12. Call BackupRead to copy all data to your backup media.
13. Call FindFirstFileNameW and FindNextFileNameW to
enumerate the hard links to the file.
14. For each hard link
15. Mark the data as a LINK on your backup media.
16. Store the full path from the list to your backup media.
17. Endfor
18. Endif
19. Else
20. Call BackupRead to copy all data to your backup media.
21. Endif
22. EndWhile
Pseudocode Algorithm for Restoring Hard Links
1. While there are more files to restore
2. If there are hard links to the file
3. Call CreateHardLink to recreate the links.
4. Endif
5. Call BackupWrite with the data stored on your backup media
6. EndWhile
Windows Server 2003 and Windows XP: The FindFirstFileNameW and FindNextFileNameW functions are not supported. You can instead use the procedure outlined in the following pseudocode example.
Alternate Pseudocode Algorithm for Backing Up Hard Links
1. Initialize and empty a list of known links.
2. While there are more files to back up
3. Read the disk and get the next file.
4. Call CreateFile to open the file for read.
5. Call GetFileInformationByHandle to get the NumberOfLinks and
the FileIndex.
6. If the NumberOfLinks is greater than 1
7. Search the list of known links looking for
the same FileIndex.
8. If a match is NOT found
9. Add the full path of the file and the FileIndex
to the list.
10. Call BackupRead to copy all data to
your backup media.
11. Else
12. Mark the data as a LINK on your backup media
13. Store the full path from the list
to your backup media.
14. Endif
15. Else
16. Call BackupRead to copy all data to your
backup media.
17. Endif
18. EndWhile