I made the hard link to the
wallet.dat file in the
Dropbox directory. So my
wallet.dat file backups automaticaly.
The way to make a hard link in Windows NT or higher:
fsutil hardlink create link_name source_file
The way to make a hard link in Windows Vista or higher:
mklink /h link_name source_file
The way to make a symbolic link in Windows Vista or higher:
mklink link_name source_file
For a folder:
mklink /d link_name source_dir
Or (I prefer this way):
mklink /j link_name source_dir
The way to make a symbolic link in POSIX/UNIX-like systems:
ln -s source_file link_name
The way to make a hard link in POSIX/UNIX-like systems: