<完整FileSystemObject对象参考
该MoveFolder方法移动从一个位置的一个或多个文件夹到另一个。
句法
FileSystemObject.MoveFolder source,destination
参数 | 描述 |
---|---|
source | 需要。 文件夹/文件夹的路径移动。 可以包含在最后一个组件通配符。 |
destination | 需要。 当移动文件夹/文件夹。 不能包含通配符 |
例
<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
fs.MoveFolder "c:\test\web\","c:\windows\"
set fs=nothing
%>
<完整FileSystemObject对象参考