Re: python 3 creating hard links on ntfs

2018-04-19 Thread zljubisic
Thanks guys. -- https://mail.python.org/mailman/listinfo/python-list

Re: python 3 creating hard links on ntfs

2018-04-18 Thread eryk sun
On Wed, Apr 18, 2018 at 8:06 PM, wrote: > Is it possible to create hard links on windows with ntfs? > On linux I can use os.link, but how about windows? Windows support was added for os.link years ago in version 3.2. Internally it's implemented via WinAPI CreateHardLink, which in turn calls NTAP

Re: python 3 creating hard links on ntfs

2018-04-18 Thread Steven D'Aprano
On Wed, 18 Apr 2018 13:06:37 -0700, zljubisic wrote: > Is it possible to create hard links on windows with ntfs? On linux I can > use os.link, but how about windows? According to the documentation, creating hard links on Windows has worked since version 3.2: https://docs.python.org/3/library/os