Sujet : Re: pathlib.Path.is_file vs os.path.isfile difference
De : barry (at) *nospam* barrys-emacs.org (Barry)
Groupes : comp.lang.pythonDate : 10. Mar 2024, 12:17:45
Autres entêtes
Message-ID : <mailman.76.1710065896.3452.python-list@python.org>
References : 1 2
On 8 Mar 2024, at 23:19, Thomas Passin via Python-list <python-list@python.org> wrote:
We just learned a few posts back that it might be specific to Linux; I ran it on Windows.
Depending on the exact win32 api used there is a 257 limit on windows.
The 257 includes 2 for the device, C:, and 255 for the path part that will use 1 for the leading \. Getting an error for a name that is 255 is not surprising.
Other api allow for 65535 limit, not sure on its additional limits.
Barry