自强学堂
自强学堂:学习、分享、让你更强!
ASP 实例HTMLCSSJAVASCRIPTJQUERYSQLPHPBOOTSTRAPANGULARXML
 

ASP MoveFolder 方法

FileSystemObject 对象参考手册 完整的 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 对象参考手册 完整的 FileSystemObject 对象参考手册