MCPcopy Create free account
hub / github.com/catboost/catboost / walk_relative

Function walk_relative

library/python/fs/__init__.py:505–507  ·  view source on GitHub ↗
(path, topdown=True, onerror=None, followlinks=False)

Source from the content-addressed store, hash-verified

503
504
505def walk_relative(path, topdown=True, onerror=None, followlinks=False):
506 for dirpath, dirnames, filenames in os.walk(path, topdown=topdown, onerror=onerror, followlinks=followlinks):
507 yield os.path.relpath(dirpath, path), dirnames, filenames
508
509
510def supports_clone():

Callers 1

hardlink_treeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected