[issue18199] Windows: support path longer than 260 bytes using "\\?\" prefix

2016-09-09 Thread Steve Dower
Steve Dower added the comment: Given that Windows 10 already supports this without us having to do the processing ourselves (see issue27731), I don't see us implementing this. -- resolution: -> rejected status: open -> closed ___ Python tracker

[issue18199] Windows: support path longer than 260 bytes using "\\?\" prefix

2016-08-03 Thread Eryk Sun
Eryk Sun added the comment: Apparently CoreFX adds the \\?\ prefix automatically: https://blogs.msdn.microsoft.com/jeremykuhne/2016/06/21/more-on-new-net-path-handling It's great that Windows 10 Anniversary Edition will be getting long path support without requiring the extended path prefix,

[issue18199] Windows: support path longer than 260 bytes using "\\?\" prefix

2016-08-03 Thread Steve Dower
Steve Dower added the comment: Just as a data point, the .NET Framework's latest version removes all of their extra path processing and lets Win32 do the validation/normalization (that is, they used to do what we're considering, but now match our behaviour).

[issue18199] Windows: support path longer than 260 bytes using "\\?\" prefix

2016-08-03 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +Aaron.Meurer, Voo, daniel.ugra, eryksun, ezio.melotti, haypo, jens, loewis, pitrou, santoso.wijaya, serhiy.storchaka, steve.dower, zach.ware ___ Python tracker

[issue18199] Windows: support path longer than 260 bytes using "\\?\" prefix

2016-08-03 Thread Berker Peksag
Changes by Berker Peksag : -- Removed message: http://bugs.python.org/msg271888 ___ Python tracker ___

[issue18199] Windows: support path longer than 260 bytes using "\\?\" prefix

2016-08-03 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: -luisa.sam...@gmail.com ___ Python tracker ___

[issue18199] Windows: support path longer than 260 bytes using "\\?\" prefix

2016-08-03 Thread Luisa
Luisa added the comment: Long Path Tool is the perfect utility that can solve all the long path issues. It can help you remove blocked files or too long path files. You can easily fix file errors with this software. -- nosy: +luisa.sam...@gmail.com -Aaron.Meurer, Voo, daniel.ugra,

[issue18199] Windows: support path longer than 260 bytes using "\\?\" prefix

2016-02-26 Thread Ugra Dániel
Changes by Ugra Dániel : -- nosy: +daniel.ugra ___ Python tracker ___ ___

[issue18199] Windows: support path longer than 260 bytes using "\\?\" prefix

2016-02-10 Thread Jens Diemer
Jens Diemer added the comment: I have made https://github.com/jedie/pathlib_revised to address this, see: https://github.com/jedie/pathlib_revised#windows-max_path The idea is to add a property (I call it 'extended_path') and this will add the \\?\ prefix on all absolute path under windows.

[issue18199] Windows: support path longer than 260 bytes using "\\?\" prefix

2016-02-10 Thread Eryk Sun
Eryk Sun added the comment: > There is a problem with os.chdir(): It doesn't work with > \\?\ notation. The process current directory is part of the Windows API, so it's subject to the MAX_PATH limit [1]. See SetCurrentDirectory [2]. Python can't do anything about this. As to shutil.rmtree,

[issue18199] Windows: support path longer than 260 bytes using "\\?\" prefix

2016-02-05 Thread Jens Diemer
Jens Diemer added the comment: I also with this problems. I have made a test script. There is a problem with os.chdir(): It doesn't work with \\?\ notation. And there is also a problem, if you use ``` import os import pathlib import tempfile with

[issue18199] Windows: support path longer than 260 bytes using \\?\ prefix

2015-02-25 Thread Aaron Meurer
Changes by Aaron Meurer asmeu...@gmail.com: -- nosy: +Aaron.Meurer ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18199 ___ ___ Python-bugs-list

[issue18199] Windows: support path longer than 260 bytes using \\?\ prefix

2014-09-30 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@gmail.com: -- components: -Unicode ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18199 ___ ___

[issue18199] Windows: support path longer than 260 bytes using \\?\ prefix

2014-08-10 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- nosy: +steve.dower, zach.ware -brian.curtin versions: +Python 3.5 -Python 3.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18199 ___

[issue18199] Windows: support path longer than 260 bytes using \\?\ prefix

2013-10-24 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- nosy: -tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18199 ___ ___ Python-bugs-list

[issue18199] Windows: support path longer than 260 bytes using \\?\ prefix

2013-10-24 Thread Santoso Wijaya
Changes by Santoso Wijaya santoso.wij...@gmail.com: -- nosy: +santa4nt ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18199 ___ ___

[issue18199] Windows: support path longer than 260 bytes using \\?\ prefix

2013-06-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Well, the problem, as you point out, is that \\?\ only works with absolute paths, but the stdlib currently works with both absolute and relative paths. The only reasonable solution right now is to prepend the \\?\ prefix yourself (after having resolved the

[issue18199] Windows: support path longer than 260 bytes using \\?\ prefix

2013-06-13 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@gmail.com: -- title: No long filename support for Windows - Windows: support path longer than 260 bytes using \\?\ prefix ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18199