Python symbolic links on windows do not show up
问题 I have seen answers about how to create symbolic links on Windows using Python (I am on Win 7). However the links does not show up in the system for some reason even though the call claim success. Am I missing something obvious ? >>> import ctypes >>> kdll = ctypes.windll.LoadLibrary("kernel32.dll") >>> kdll.CreateSymbolicLinkA("C:\\testlink", "C:\\existing_dir", 1) 1 >>> ctypes.WinError() WindowsError(0, 'The operation completed successfully.') >>> kdll.CreateSymbolicLinkA("C:\\testlink", "C