Does anyone know of a way to make/read symbolic links across versions of win32 from Python? Ideally there should be a minimum amount of platform specific code, as I need my
Using mklink command in subprocess create link.
from subprocess import call call(['mklink', 'LINK', 'TARGET'], shell=True)