ASP Copy 方法
定义和用法
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("d:\new_file.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("d:\new_file",false) set fo=nothing set fs=nothing %>