ASP Copy 方法


❮ 完整的 Folder 文件夹对象参考

Copy 方法把文件或文件夹从一个位置拷贝到另一个位置。

语法

FileObject.Copy(destination[,overwrite])

FolderObject.Copy(destination[,overwrite])

参数 描述
destination 必需的。复制文件或文件夹的目的地。不允许使用通配符。
overwrite 可选。指示是否可覆盖已有文件或文件夹的布尔值。True 表示文件或文件夹可被覆盖,false 表示文件或文件不能被覆盖。默认是 true。

针对 File 对象的例子

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("c:\test.txt")
f.Copy("c:\new_test.txt",false)
set f=nothing
set fs=nothing
%>

针对 Folder 对象的例子

<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\test")
fo.Copy("c:\new_test",false)
set fo=nothing
set fs=nothing
%>

❮ 完整的 Folder 文件夹对象参考