If I use the following to get the list of all connected drives:
available_drives = ['%s:' % d for d in string.ascii_uppercase if os.path.exists('%s:' % d)]
How do I get the UNC path of the connected drives?
os.path just returns z:\ instead of \share\that\was\mapped\to\z