View source on GitHub |
Copies data from src
to dst
.
tf.io.gfile.copy(
src, dst, overwrite=False
)
src
: string, name of the file whose contents need to be copieddst
: string, name of the file to which to copy tooverwrite
: boolean, if false it's an error for dst
to be occupied by an
existing file.errors.OpError
: If the operation fails.