I'm trying to check is the path symlink hardlink or junction point on windows
How can I do it? os.path.islink()
not work. It always returns False
I create symlinks by next method:
mklink /d linkPath targetDir
mklink /h linkPath targetDir
mklink /j linkPath targetDir
I've used command line because os.link and os.symlink available only on Unix systems
Maybe there are any command line tools for it? Thanks