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 Oren_Held
Recipients Oren_Held
Date 2010-06-20.08:49:08
SpamBayes Score 0.055645347
Marked as misclassified No
Message-id <1277023751.91.0.438330382261.issue9035@psf.upfronthosting.co.za>
In-reply-to
Content
On unices, ismount checks whether the given path is a mount point.
On windows, it only checks whether it's a drive letter.

Long story short, Python simply returns False when doing ismount(r"c:\mount1"), while c:\mount1 is a real mount point.

This is relevant for all modern windows versions.

-- 

I'm using win32file.GetVolumePathName() for overcoming this, but I'm not sure if the os python package should be importing win32file, maybe there is a better way to check whether a path is a mount point..
History
Date User Action Args
2010-06-20 08:49:12Oren_Heldsetrecipients: + Oren_Held
2010-06-20 08:49:11Oren_Heldsetmessageid: <1277023751.91.0.438330382261.issue9035@psf.upfronthosting.co.za>
2010-06-20 08:49:09Oren_Heldlinkissue9035 messages
2010-06-20 08:49:08Oren_Heldcreate