How to create symlinks in windows using Python?
问题 I am trying to create symlinks using Python on Windows 8. I found This Post and this is part of my script. import os link_dst = unicode(os.path.join(style_path, album_path)) link_src = unicode(album_path) kdll = ctypes.windll.LoadLibrary("kernel32.dll") kdll.CreateSymbolicLinkW(link_dst, link_src, 1) Firstly, It can create symlinks only when it is executed through administrator cmd. Why is that happening? Secondly, When I am trying to open those symlinks from windows explorer I get This Error