将指定文件或文件夹从一个位置复制到另一位置。
object.Copy( destination[, overwrite] );
object
必选项。 应为 File 或 Folder 对象的名称。
destination
必选项。 复制文件或文件夹的目的位置。 不答应通配字符。
overwrite
可选项。 Boolean 值,假如要覆盖已有文件或文件夹,则为 True (默认);否则,则为 False 。
Copy 方法对单个 File 或 Folder 所产生的结果和使用 FileSystemObject.CopyFile 或 FileSystemObject.CopyFolder 所执行的操作结果一样,其中,后者把由 object 所引用的文件或文件夹作为参数传递。 但是请注重,后两种替换方法能够复制多个文件或文件夹。
下面的例子说明了 Copy 方法的用法。
var fso, f;fso = new ActiveXObject("Scripting.FileSystemObject");f = fso.CreateTextFile("c://testfile.txt", true);f.WriteLine("This is a test.");f.Close();f = fso.GetFile("c://testfile.txt");f.Copy("c://windows//desktop//test2.txt");
CopyFile 方法 CopyFolder 方法 Delete 方法 Move 方法 OpenAsTextStream 方法应用于: File 对象 Folder 对象
新闻热点
疑难解答