Home | History | Annotate | Download | only in Ecc

Lines Matching refs:PathParts

293         PathParts = TmpPath.split(os.sep)

294 if len(PathParts) == 0:
296 if len(PathParts) == 1:
297 if PathParts[0].strip().endswith(':'):
298 return PathParts[0].upper()
302 if Dir.upper() == PathParts[0].upper():
305 if PathParts[0].strip().endswith(':'):
306 PathParts[0] = PathParts[0].upper()
307 ParentDir = PathParts[0]
309 if PathParts[0] == '':
313 PathParts.remove(PathParts[0]) # need to remove the parent
314 for Part in PathParts: