Path.lstat() Like Path.stat() but, if the path points to a symbolic link, return the symbolic link’s information
filecmp.cmpfiles(dir1, dir2, common, shallow=True) Compare the files in the two directories dir1 and dir2
common Files and subdirectories in both a and b.
shutil.copyfile(src, dst, *, follow_symlinks=True) Copy the contents (no metadata) of the file named src to a file
shutil.unregister_unpack_format(name) Unregister an unpack format. name is the name of the format.
os.path.getmtime(path) Return the time of last modification of path. The return value is a number giving the number
shutil.chown(path, user=None, group=None) Change owner user and/or group of the given path.
linecache.lazycache(filename, module_globals) Capture enough detail about a non-file-based module to permit getting its lines
fileinput.lineno() Return the cumulative line number of the line that has just been read. Before the first line has been read
fileinput.filelineno() Return the line number in the current file. Before the first line has been read, returns 0
Page 14 of 19