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)
1.4m articles
1.4m replys
5 comments
57.0k users