os.path.isabs(path) Return True if path is an absolute pathname. On Unix, that means it begins with a
shutil.copymode(src, dst, *, follow_symlinks=True) Copy the permission bits from src to dst. The file contents
fnmatch.filter(names, pattern) Return the subset of the list of names that match pattern. It is the same as
tempfile.TemporaryFile(mode='w+b', buffering=None, encoding=None, newline=None, suffix=None, prefix=None, dir=None) Return a
PurePath.with_name(name) Return a new path with the name changed. If the original path doesn’t have a name, ValueError
Path.iterdir() When the path points to a directory, yield path objects of the directory contents:
shutil.copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2, ignore_dangling_symlinks=False) Recursively copy
PurePath.as_posix() Return a string representation of the path with forward slashes (/):
tempfile.mktemp(suffix='', prefix='tmp', dir=None) Deprecated since version
class fileinput.FileInput(files=None, inplace=False, backup='', bufsize=0, mode='r', openhook=None) Class FileInput
Page 6 of 19