当前位置: 首页 > 文档资料 > Erlang 中文教程 >

copy

优质
小牛编辑
122浏览
2023-12-01

此方法用于制作现有文件的副本。

语法 (Syntax)

copy(source,destination)

参数 (Parameters)

  • Source - 需要复制的源文件的名称。

  • Destination - 文件的目标路径和名称。

返回值 (Return Value)

没有

例如 (For example)

-module(helloworld).
-export([start/0]). 
start() ->   
   file:copy("Newfile.txt","Duplicate.txt").

输出 (Output)

名为Duplicate.txt的文件将在与Newfile.txt相同的位置创建,它将具有与Newfile.txt相同的内容。