示例#1
0
def is_extended_unc(path):
    return path.startswith(r'\\?\UNC')
示例#2
0
def is_extended_unc(path):
    return path.startswith(r'\\?\UNC')
示例#3
0
def is_normal_unc(path):
    return not is_extended_unc(path) and path.startswith('\\\\') and not path.startswith(r'\\?')
示例#4
0
def is_normal_unc(path):
    return not is_extended_unc(path) and path.startswith(
        '\\\\') and not path.startswith(r'\\?')