Ejemplo n.º 1
0
def is_extended_unc(path):
    return path.startswith(r'\\?\UNC')
Ejemplo n.º 2
0
def is_extended_unc(path):
    return path.startswith(r'\\?\UNC')
Ejemplo n.º 3
0
def is_normal_unc(path):
    return not is_extended_unc(path) and path.startswith('\\\\') and not path.startswith(r'\\?')
Ejemplo n.º 4
0
def is_normal_unc(path):
    return not is_extended_unc(path) and path.startswith(
        '\\\\') and not path.startswith(r'\\?')