https://bugs.winehq.org/show_bug.cgi?id=50586
--- Comment #17 from Arnaud Dovi mr.dovi@gmail.com --- (In reply to Erich E. Hoover from comment #7)
(In reply to Arnaud Dovi from comment #5)
... Wasn't aware there was 4 different one, the one I used is what I think is 2) unix symlink, created with ln -s on a directory. I also know the MKLINK.exe method but this one does not ships with wine so they are probably only creatable programmatically.
Not a problem, I was just worried that I had accidentally broken something that a Windows program was doing (but they cannot create unix symlinks). wine-staging does support mklink, but it's currently treated as a builtin command in Wine's cmd. For example (absolute directory symlink): wine cmd /C 'mklink /d C:\target C:\windows'
Very nice, exactly what I was looking for the other day but I have only checked binaries available into system32
I will use this method instead of unix symlinks currently, thank you for sharing.