ASP MoveFolder 方法
定义和用法
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
%>