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, brian.curtin, giampaolo.rodola, markm, orsenthil, santoso.wijaya, sijinjoseph, tim.golden
Date 2011-10-04.15:30:12
SpamBayes Score 0.022203445
Marked as misclassified No
Message-id <1317742213.38.0.423272429033.issue9035@psf.upfronthosting.co.za>
In-reply-to
Content
Anything wrong with the following simple approach? (e.g. is it bad to depend on win32file?)

def win_ismount(path):
  import win32file
  volume_path = win32file.GetVolumePathName(path)
  return volume_path == path # May have to ignore a trailing backslash
History
Date User Action Args
2011-10-04 15:30:13Oren_Heldsetrecipients: + Oren_Held, orsenthil, giampaolo.rodola, tim.golden, brian.curtin, sijinjoseph, santoso.wijaya, markm
2011-10-04 15:30:13Oren_Heldsetmessageid: <1317742213.38.0.423272429033.issue9035@psf.upfronthosting.co.za>
2011-10-04 15:30:12Oren_Heldlinkissue9035 messages
2011-10-04 15:30:12Oren_Heldcreate