Re: [PATCH] cmd: Implement builtin mklink command
24 Oct
2017
24 Oct
'17
8:24 a.m.
Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> writes:
+ if(hard && !CreateHardLinkW(file1, file2, NULL)) + WCMD_output_stderr(WCMD_LoadMessage(WCMD_READFAIL), file1); + else if(!junction && !CreateSymbolicLinkW(file1, file2, isdir)) + WCMD_output_stderr(WCMD_LoadMessage(WCMD_READFAIL), file1); + else if(junction) + WINE_TRACE("Juction links currently not supported.\n");
Surely the options have to be exclusive. It makes no sense to try to create multiple links for the same file. -- Alexandre Julliard julliard(a)winehq.org
2972
Age (days ago)
2972
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard