ASP Move 方法
❮ 文件夹对象完整参考
Move 方法将指定的文件或文件夹从一个位置移动到另一个位置。
语法
FileObject.Move(destination)
FolderObject.Move(destination)
参数 | 描述 |
---|---|
destination | 必需。要将文件或文件夹移动到的位置。不允许使用通配符。 |
文件对象的示例
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
Set f=fs.GetFile("c:\test.txt")
f.Move("c:\test\test.txt")
set f=nothing
set fs=nothing
%>
文件夹对象的示例
<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\test")
fo.Move("c:\asp\test")
set fo=nothing
set fs=nothing
%>
❮ 文件夹对象完整参考