fileinput.close() Close the sequence.
os.path.getatime(path) Return the time of last access of path. The return value is a number giving the number of seconds
shutil.copy(src, dst, *, follow_symlinks=True) Copies the file src to the file or directory dst. src
Path.lchmod(mode) Like Path.chmod() but, if the path points to a symbolic link, the symbolic link’s mode is changed
same_files Files which are identical in both a and b, using the class’s file comparison operator.
os.path.commonpath(paths) Return the longest common sub-path of each pathname in the sequence paths. Raise ValueError
stat.S_ISCHR(mode) Return non-zero if the mode is from a character special device file.
shutil.rmtree(path, ignore_errors=False, onerror=None) Delete an entire directory tree; path must point to a directory
stat.S_ISFIFO(mode) Return non-zero if the mode is from a FIFO (named pipe).
shutil.copy2(src, dst, *, follow_symlinks=True) Identical to copy() except that copy2() also attempts
Page 16 of 19