Will symbolic links created in unix (linux/osx) still working in windows? -


is possible create symbolic link relative path in linux/osx, move complete folder windows system , still able use links?

say structure following:

> ln -s ../c/e d  ./a   |   |-/b   |  |   |  |-d -> ../c/e // symlink   |     |-/c      |      |-e // original file 

so ./a/b/d symlink ./a/c/e. still work on windows, if move whole ./a directory there?

update:

i found related questions, there no information relative paths , osx case or bit outdated (2007):

no, on windows symbolic link show file containing location of file symbolic link pointed to.


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -