I have two network drives that I access through Windows 7: V:\
and T:\
I am trying to create shortcuts between the two that alphabetise with folders (rather than files), so I am using the mklink
command:
mklink /d \Photos V:\Photos
which creates a symlink at C:\
.
I can move the symlink around locally. However, when I try to move the symlink to a network location, it begins copy the actual files over rather than symlinking them.
I figure that if I can create a symlink of a network drive on a local drive, what's stopping me creating a symlink of a network drive on another network drive. Am I correct in assuming this?
Is there any way to designate the destination file path when creating symlinks with the mklink
command? Or is there any way to move symlinks to a network drive at all?