ASP 复制 方法
❮ 文件对象完整参考
Copy 方法将指定的文件或文件夹从一个位置复制到另一个位置。
语法
FileObject.Copy(destination[,overwrite])
FolderObject.Copy(destination[,overwrite])
参数 | 描述 |
---|---|
destination | 必需。复制文件或文件夹的目标位置。不允许使用通配符。 |
overwrite | 可选。一个布尔值,指示是否可以覆盖现有文件或文件夹。True 表示可以覆盖文件/文件夹,False 表示不能覆盖文件/文件夹。默认为 True。 |
文件对象的示例
<%
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
%>
文件夹对象的示例
<%
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
%>
❮ 文件对象完整参考