ASP Move 方法

定义和用法

Move 方法把指定的文件或文件夹从一个位置移动到另一个位置。

语法:

  1. FileObject.Move(destination)
  2. FolderObject.Move(destination)
参数 描述
destination 必需的。移动文件/文件夹的目的地。不允许使用通配符。

实例

针对 File 对象的例子

  1. <%
  2. dim fs,f
  3. set fs=Server.CreateObject("Scripting.FileSystemObject")
  4. Set f=fs.GetFile("d:\test.txt")
  5. f.Move("d:\test\test.txt")
  6. set f=nothing
  7. set fs=nothing
  8. %>

针对 Folder 对象的例子

  1. <%
  2. dim fs,fo
  3. set fs=Server.CreateObject("Scripting.FileSystemObject")
  4. set fo=fs.GetFolder("d:\test")
  5. fo.Move("d:\asp\test")
  6. set fo=nothing
  7. set fs=nothing
  8. %>