12

I have to copy directory structure from one local NTFS disk to another (Windows 7+) and preserve hard links that exist within this directory structure.

An acceptable solution would be to replace hard links with (relative) symbolic links before copy, but I'm not sure if it is practicable either.

Please note that these are hard links and there would be no problem with copying junction points and symbolic links, the latter could be just copied and fixed later. I don't intend to clone it, just to copy the directory structure—which is a part of the whole disk—to another non-empty disk.

What are the options here?

Vomit IT - Chunky Mess Style
  • 40,038
  • 27
  • 84
  • 117
Estus Flask
  • 143
  • 1
  • 12

4 Answers4

10

Tool To Copy Hard Links Across Separate Disk Partitions

LN - Command Line Hardlinks

Example Command: ln --copy x:\dir\dir2 y:\dir\newdir

In the above example the directories and files below x:\dir\dir2 are copied to y:\dir\newdir, and all hardlinks/junctions/symbolic links within x:\dir\dir2 are copied/tied to their new locations under y:\dir\newdir.


Download

enter image description here

Basic Instructions

  • Download the software for your CPU architecture from the applicable zip file, as well as the vcredist (Visual C++ Redistributable) and install it.
  • Then just extract the files and folders from the zip file to a new folder somewhere (.e.g C:\Temp).
  • In command prompt, change to that [directory] folder (e.g. cd /d C:\Temp) and then run the needed commands for your drive locations as the above example command shows.

Note: Running ln --help shows help detail but the above command example is supposed to copy the hard links per the documentation.


Potentially Relevant Functions


Other Notes

It appears hard links are locked to the same disk partition for their file pointers, and cannot be used across multiple partitions. Also, hard links on NTFS partitions are part of the Master File Table records—or attributes for the counts at least—so copying these to an existing disk that has it's own MFT could be a problem if you don't clone byte-for-byte at the partition level at least.

Vomit IT - Chunky Mess Style
  • 40,038
  • 27
  • 84
  • 117
5

The command-line utility rsync does what you ask.

Presuming your old data is on location A, and your new data is on B, do the following:

rsync -ahPruvz --hard-links A B

Quoting from rsync manual:

This tells rsync to look for hard-linked files in the source and link together the corresponding files on the destination.

How to obtain rsync and use it? There are 2 easy alternatives for Windows:

First alternative: use cygwin. It's a windows software. Install it, add rsync at the step of selecting packages. Leave everything else defaulted. After you install it, use its shell to type in the command. If you want, you may use the full path, /usr/bin/rsync instead of just rsync. If you want to access Windows drives, use paths like "/cygwin/drives" and always try to auto-complete using TAB.

Second alternative: if it's a desktop computer, use a live GNU/Linux distribution. Prepare a live USB image, boot from it, mount the desired disks and invoke rsync. If the live image does not have rsync, install it. (apt-get install rsync in Debian and its derivatives.) If you're not yet experienced with the Linux ecosystem, cygwin could be easier.

VasyaNovikov
  • 3,366
  • 3
  • 25
  • 33
  • Thank you for clarifying this. I've checked rsync, and it does the job on hard links indeed ( /cygwin/driveletter and slashes cause some discomfort but it works). – Estus Flask Nov 17 '15 at 02:26
  • note: if `A` is a directory, then `B` should be the name that directory will take on the target (unlike `cp` for example, where the last argument is the parent directory) – M.M Jun 20 '16 at 15:16
  • @estus - Which methods did you try, how did it work? and what did results did you see and like the most? – Alex S May 02 '19 at 11:04
  • @AlexS I don't remember but likely ended up with `ln` like shown in another answer. Cygwin `rsync` from this answer may work as well, as I mentioned. – Estus Flask May 02 '19 at 11:16
  • @estus - What method of LN did you end up using? I need to copy a Folder Tree structure with files that have hard links internally (to an external drive maintaining the size & links) and I'm wondering how to get it done. Seems like "Smart Copy" might be it but not sure? – Alex S May 02 '19 at 11:19
  • 1
    @AlexS I used CLI utility, `ln --copy`. As for GUI, I assume that 'Smart Copy' is what you're looking for. – Estus Flask May 02 '19 at 11:23
  • @estus - I dont mind using either as long as it REPLICATES entire Folder Tree structure (having internal hard links) from Drive X to Drive Y - How much did you copy in terms of GB/TB and does it maintain Date/ Time stamps. – Alex S May 02 '19 at 11:28
  • @AlexS Less than TB. I don't think that quantity is the problem, as long as it works. It does what it was advertised for and preserves hard links. It seems that it didn't maintain creation date. Modification dates were ok. – Estus Flask May 02 '19 at 11:50
3

Try looking into rsync for windows. Since rsync has an option to preserve hardlinks (flag -H, --hard-links) it should do the job (source: https://download.samba.org/pub/rsync/rsync.html).

You could try looking into something like cwRsync: https://www.itefix.net/cwrsync# this one has GUI.

cwRsync is a packaging of Rsync for Windows with a client GUI. You can use cwRsync for fast remote file backup and synchronization.

  • 1
    Please exercise caution when recommending software. As written, your answer may be seen as spam. Your answer should include a description of the software and how it addresses the question. More information: [How do I recommend software in my answers?](http://meta.superuser.com/q/5329) – bwDraco Nov 10 '15 at 17:03
  • 1
    I wasn't able to achieve this with rsync previously (I believe I have used DeltaCopy for GUI). It may be relevant to NTFS hard link implementation and the fact that rsync is primarily *nix tool. Some clarification would be appreciated. – Estus Flask Nov 10 '15 at 17:56
  • It doesn t support Windows acl – user2284570 Feb 13 '22 at 19:21
2

Very late to the party here.

Fight fire with fire. Since robocopy allowed the mess, then we'll use robocopy to clean it up as well.

Create an empty directory then use robocopy to copy the empty dir to the target (that has the super long paths) using the purge option.

md %temp%\foo
robocopy %temp%\foo target /purge
rd target
rd %temp%\foo

That should work.