This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eryksun
Recipients eryksun, morha13, paul.moore, steve.dower, tim.golden, zach.ware
Date 2017-10-06.15:55:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1507305311.05.0.213398074469.issue31716@psf.upfronthosting.co.za>
In-reply-to
Content
This is standard Windows API behavior for the final path component. A single dot component means the current directory. Two dots means the parent directory. More than two dots and/or trailing spaces, gets reduced to a single dot, meaning the current directory. For example:

    >>> os.path.abspath('.')
    'C:\\Temp'
    >>> os.path.abspath('..')
    'C:\\'
    >>> os.path.abspath('...')
    'C:\\Temp'
    >>> os.path.abspath('... ... ...')
    'C:\\Temp'

Specifically, os.path.isdir is implemented as nt._isdir, which calls WinAPI GetFileAttributes to check for FILE_ATTRIBUTE_DIRECTORY, which in turn calls the NT system function NtQueryAttributesFile. 

GetFileAttributes has to translate the DOS path to an NT kernel path. In the kernel, none of this "." business exists. The kernel doesn't even have a concept of a working directory. Depending on your Windows version, it might call the runtime library function RtlDosPathNameToNtPathName_U_WithStatus to convert the path to a native OBJECT_ATTRIBUTES record. The first step is to normalize the path via RtlGetFullPathName_Ustr, which is what the Windows API GetFullPathName function calls like in the above abspath() examples.
History
Date User Action Args
2017-10-06 15:55:11eryksunsetrecipients: + eryksun, paul.moore, tim.golden, zach.ware, steve.dower, morha13
2017-10-06 15:55:11eryksunsetmessageid: <1507305311.05.0.213398074469.issue31716@psf.upfronthosting.co.za>
2017-10-06 15:55:11eryksunlinkissue31716 messages
2017-10-06 15:55:10eryksuncreate