Резервное копирование и восстановление жестких ссылок
Для резервного копирования и восстановления жестких ссылок используйте функции CreateFile, CreateHardLink, FindFirstFileNameW, FindNextFileNameW, BackupRead, GetFileInformationByHandle и BackupWrite, как показано в следующих примерах псевдокода.
Алгоритм псевдокода для резервного копирования жестких ссылок
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
Алгоритм псевдокода для восстановления жестких ссылок
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 и Windows XP: функции FindFirstFileNameW и FindNextFileNameW не поддерживаются. Вместо этого можно использовать процедуру, описанную в следующем примере псевдокода.
Альтернативный алгоритм псевдокода для резервного копирования жестких ссылок
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