Latest web development tutorials

ASP MoveFolder method

FileSystemObject Object Reference Complete FileSystemObject Object Reference

MoveFolder method from a position of one or more folders to another location.

grammar

FileSystemObject.MoveFolder source,destination

参数 描述
source 必需的。指向要移动的文件夹的路径。可在最后的成分中包含通配符。
destination 必需的。移动文件夹的目的地。不能包含通配符。

Examples

<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
fs.MoveFolder "c:\test\web\","c:\windows\"
set fs=nothing
%>


FileSystemObject Object Reference Complete FileSystemObject Object Reference