Deno.copyFile (fromPath: string | URL, toPath: string | URL): Promise<void>
将一个文件的内容和权限复制到另一个指定的路径,默认情况下根据需要创建一个新文件,否则覆盖。
如果目标路径是目录或不可写,则失败。
原文: Copies the contents and permissions of one file to another specified path, by default creating a new file if needed, else overwriting.
Fails if target path is a directory or is unwritable.
fromPath : string | URL
toPath : string | URL
原文:
fromPath : string | URL
toPath : string | URL
Promise<void>
原文: Promise<void>
await Deno.copyFile( "from.txt", "to.txt" );
需要为 fromPath 提供 allow-read 权限。
需要为 toPath 提供 allow-write 权限。
原文:
Requires allow-read permission on fromPath.
Requires allow-write permission on toPath.