86 try: 87 import _winapi 88 _winapi.CreateJunction(src, dst) 89 return True 90 except: 91 pass 92 try: 93 os.symlink(src, dst) 94 return True