<完整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對象參考