The shutil module offers a number of high-level operations on files and collections of files.In particular, functions are provided which support file copying and removal. shutil.copy(src, dst, *, ...
Python has support for shallow copying and deep copying functionality via its copy module. However it does not provide for copy-on-write semantics. This project aims to remedy this shortcoming. The ...