(fn)
| 221 | return fn.stat() if isinstance(fn, os.DirEntry) else os.stat(fn) |
| 222 | |
| 223 | def _islink(fn): |
| 224 | return fn.is_symlink() if isinstance(fn, os.DirEntry) else os.path.islink(fn) |
| 225 | |
| 226 | def copyfile(src, dst, *, follow_symlinks=True): |
| 227 | """Copy data from src to dst in the most efficient way possible. |
no test coverage detected