예제 #1
0
파일: core.py 프로젝트: omerholz/plant
def isdir(path, exists):
    if exists:
        return isdir_base(path)

    return '.' not in split(path)[-1]
예제 #2
0
파일: fs.py 프로젝트: hltbra/markment
def isdir(path, exists):
    if exists:
        return isdir_base(path)

    return '.' not in split(path)[-1]