Is there a way to create an NTFS junction point in Python? I know I can call the junction utility, but it would be better not to rely on external tools.
junction
Since Python 3.5 there's a function CreateJunction in _winapi module.
CreateJunction
_winapi
import _winapi _winapi.CreateJunction(source, target)
2.1m questions
2.1m answers
60 comments
57.0k users